Package org.gradle.plugins.ide.api
Class PropertiesFileContentMerger
java.lang.Object
org.gradle.plugins.ide.api.FileContentMerger
org.gradle.plugins.ide.api.PropertiesFileContentMerger
Models the generation/parsing/merging capabilities.
Adds properties-related hooks.
For examples see docs for EclipseJdt
and others.
-
Constructor Summary
ConstructorDescriptionPropertiesFileContentMerger
(org.gradle.api.internal.PropertiesTransformer transformer) -
Method Summary
Modifier and TypeMethodDescriptionorg.gradle.api.internal.PropertiesTransformer
void
setTransformer
(org.gradle.api.internal.PropertiesTransformer transformer) void
withProperties
(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 org.gradle.plugins.ide.api.FileContentMerger
beforeMerged, beforeMerged, getBeforeMerged, getWhenMerged, setBeforeMerged, setWhenMerged, whenMerged, whenMerged
-
Constructor Details
-
PropertiesFileContentMerger
public PropertiesFileContentMerger(org.gradle.api.internal.PropertiesTransformer transformer)
-
-
Method Details
-
getTransformer
public org.gradle.api.internal.PropertiesTransformer getTransformer() -
setTransformer
public void setTransformer(org.gradle.api.internal.PropertiesTransformer transformer) -
withProperties
Adds a closure to be called when the file has been created. TheProperties
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.- Parameters:
closure
- The closure to execute when the Properties have been created.
-
withProperties
Adds an action to be called when the file has been created. TheProperties
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.- Parameters:
action
- The action to execute when the Properties have been created.
-