Package org.apache.maven.model
Class ActivationFile
- java.lang.Object
-
- org.apache.maven.model.ActivationFile
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,InputLocationTracker
public class ActivationFile extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, InputLocationTracker
This is the file specification used to activate the profile. Themissingvalue is the location of a file that needs to exist, and if it doesn't, the profile will be activated. On the other hand,existswill test for the existence of the file and if it is there, the profile will be activated.
Variable interpolation for these file specifications is limited to${project.basedir}, system properties and user properties.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActivationFile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActivationFileclone()Method clone.java.lang.StringgetExists()Get the name of the file that must exist to activate the profile.InputLocationgetLocation(java.lang.Object key)Gets the location of the specified field in the input source.java.lang.StringgetMissing()Get the name of the file that must be missing to activate the profile.voidsetExists(java.lang.String exists)Set the name of the file that must exist to activate the profile.voidsetLocation(java.lang.Object key, InputLocation location)Sets the location of the specified field.voidsetMissing(java.lang.String missing)Set the name of the file that must be missing to activate the profile.voidsetOtherLocation(java.lang.Object key, InputLocation location)
-
-
-
Method Detail
-
clone
public ActivationFile clone()
Method clone.- Overrides:
clonein classjava.lang.Object- Returns:
- ActivationFile
-
getExists
public java.lang.String getExists()
Get the name of the file that must exist to activate the profile.- Returns:
- String
-
getLocation
public InputLocation getLocation(java.lang.Object key)
Description copied from interface:InputLocationTrackerGets the location of the specified field in the input source.- Specified by:
getLocationin interfaceInputLocationTracker- Parameters:
key- a key object.- Returns:
- InputLocation
-
getMissing
public java.lang.String getMissing()
Get the name of the file that must be missing to activate the profile.- Returns:
- String
-
setLocation
public void setLocation(java.lang.Object key, InputLocation location)Description copied from interface:InputLocationTrackerSets the location of the specified field.- Specified by:
setLocationin interfaceInputLocationTracker- Parameters:
key- a key object.location- a location object.
-
setOtherLocation
public void setOtherLocation(java.lang.Object key, InputLocation location)- Parameters:
key- a key object.location- a location object.
-
setExists
public void setExists(java.lang.String exists)
Set the name of the file that must exist to activate the profile.- Parameters:
exists- a exists object.
-
setMissing
public void setMissing(java.lang.String missing)
Set the name of the file that must be missing to activate the profile.- Parameters:
missing- a missing object.
-
-