Package org.gradle.plugins.ide.api
Class GeneratorTask<T>
- java.lang.Object
-
- org.gradle.api.internal.AbstractTask
-
- org.gradle.api.DefaultTask
-
- org.gradle.api.internal.ConventionTask
-
- org.gradle.plugins.ide.api.GeneratorTask<T>
-
- Type Parameters:
T
- The domain object for the configuration file.
- All Implemented Interfaces:
Comparable<Task>
,org.gradle.api.internal.DynamicObjectAware
,org.gradle.api.internal.IConventionAware
,org.gradle.api.internal.TaskInternal
,ExtensionAware
,Task
,org.gradle.util.Configurable<Task>
- Direct Known Subclasses:
GenerateSolutionFileTask
,PropertiesGeneratorTask
,PropertyListGeneratorTask
,XmlGeneratorTask
public class GeneratorTask<T> extends org.gradle.api.internal.ConventionTask
A
GeneratorTask
generates a configuration file based on a domain object of type T. When executed the task:- loads the object from the input file, if it exists.
- Calls the beforeConfigured actions, passing the object to each action.
- Configures the object in some task-specific way.
- Calls the afterConfigured actions, passing the object to each action.
- writes the object to the output file.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.gradle.api.Task
Task.Namer
-
-
Field Summary
Fields Modifier and Type Field Description protected org.gradle.internal.MutableActionSet<T>
afterConfigured
protected org.gradle.internal.MutableActionSet<T>
beforeConfigured
protected T
domainObject
protected org.gradle.plugins.ide.internal.generator.generator.Generator<T>
generator
-
Fields inherited from interface org.gradle.api.Task
TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
-
-
Constructor Summary
Constructors Constructor Description GeneratorTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description File
getInputFile()
The input file to load the initial configuration from.protected File
getInputFileIfExists()
protected org.gradle.internal.reflect.Instantiator
getInstantiator()
File
getOutputFile()
The output file to write the final configuration to.void
setInputFile(File inputFile)
Sets the input file to load the initial configuration from.void
setOutputFile(File outputFile)
Sets the output file to write the final configuration to.-
Methods inherited from class org.gradle.api.internal.ConventionTask
conventionMapping, conventionMapping, getConventionMapping
-
Methods inherited from class org.gradle.api.DefaultTask
newInputDirectory, newInputFile, newOutputDirectory, newOutputFile
-
Methods inherited from class org.gradle.api.internal.AbstractTask
addValidator, appendParallelSafeAction, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, doFirst, doFirst, doFirst, doLast, doLast, doLast, execute, finalizedBy, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExecuter, getExtensions, getFinalizedBy, getGroup, getIdentityPath, getImpliesSubProjects, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTemporaryDir, getTemporaryDirFactory, getValidators, hasProperty, injectIntoNewInstance, isEnabled, isHasCustomActions, leftShift, mustRunAfter, onlyIf, onlyIf, prependParallelSafeAction, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setFinalizedBy, setGroup, setImpliesSubProjects, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, toString
-
-
-
-
Field Detail
-
beforeConfigured
protected final org.gradle.internal.MutableActionSet<T> beforeConfigured
-
afterConfigured
protected final org.gradle.internal.MutableActionSet<T> afterConfigured
-
generator
protected org.gradle.plugins.ide.internal.generator.generator.Generator<T> generator
-
domainObject
protected T domainObject
-
-
Method Detail
-
getInstantiator
@Inject protected org.gradle.internal.reflect.Instantiator getInstantiator()
-
getInputFile
@Internal("Covered by inputFileIfExists") public File getInputFile()
The input file to load the initial configuration from. Defaults to the output file. If the specified input file does not exist, this task uses some default initial configuration.- Returns:
- The input file.
-
getInputFileIfExists
@Optional @InputFile protected File getInputFileIfExists()
-
setInputFile
public void setInputFile(File inputFile)
Sets the input file to load the initial configuration from.- Parameters:
inputFile
- The input file. Use null to use the output file.
-
getOutputFile
@OutputFile public File getOutputFile()
The output file to write the final configuration to.- Returns:
- The output file.
-
setOutputFile
public void setOutputFile(File outputFile)
Sets the output file to write the final configuration to.- Parameters:
outputFile
- The output file.
-
-