Models the generation/parsing/merging capabilities. Adds properties-related hooks.
For examples see docs for EclipseJdt and others.
| Constructor and description |
|---|
PropertiesFileContentMerger
(org.gradle.api.internal.PropertiesTransformer transformer) |
| Type | Name and description |
|---|---|
org.gradle.api.internal.PropertiesTransformer |
getTransformer() |
void |
setTransformer(org.gradle.api.internal.PropertiesTransformer transformer) |
void |
withProperties(groovy.lang.Closure closure)Adds a closure to be called when the file has been created. |
void |
withProperties(Action<Properties> action)Adds an action to be called when the file has been created. |
| Methods inherited from class | Name |
|---|---|
class FileContentMerger |
beforeMerged, getBeforeMerged, getWhenMerged, setBeforeMerged, setWhenMerged, whenMerged |
class Object |
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Adds a closure to be called when the file has been created. The Properties are passed to the closure as a parameter. The closure can modify the Properties before they are written to the output file.
For examples see docs for EclipseJdt and others.
closure - The closure to execute when the Properties have been created.Adds an action to be called when the file has been created. The Properties are passed to the action as a parameter. The action can modify the Properties before they are written to the output file.
For examples see docs for EclipseJdt and others.
action - The action to execute when the Properties have been created.Gradle API 3.0-milestone-1