org.apache.maven.model
Class ActivationFile

java.lang.Object
  extended by org.apache.maven.model.ActivationFile
All Implemented Interfaces:
Serializable, Cloneable, InputLocationTracker

public class ActivationFile
extends Object
implements Serializable, Cloneable, InputLocationTracker

This is the file specification used to activate the profile. The missing value will be the location of a file that needs to exist, and if it doesn't the profile will be activated. On the other hand exists will test for the existence of the file and if it is there the profile will be activated.

Version:
$Revision$ $Date$
See Also:
Serialized Form

Constructor Summary
ActivationFile()
           
 
Method Summary
 ActivationFile clone()
          Method clone.
 String getExists()
          Get the name of the file that must exist to activate the profile.
 InputLocation getLocation(Object key)
          Gets the location of the specified field in the input source.
 String getMissing()
          Get the name of the file that must be missing to activate the profile.
 void setExists(String exists)
          Set the name of the file that must exist to activate the profile.
 void setLocation(Object key, InputLocation location)
          Sets the location of the specified field.
 void setMissing(String missing)
          Set the name of the file that must be missing to activate the profile.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActivationFile

public ActivationFile()
Method Detail

clone

public ActivationFile clone()
Method clone.

Overrides:
clone in class Object
Returns:
ActivationFile

getExists

public String getExists()
Get the name of the file that must exist to activate the profile.

Returns:
String

getLocation

public InputLocation getLocation(Object key)
Description copied from interface: InputLocationTracker
Gets the location of the specified field in the input source.

Specified by:
getLocation in interface InputLocationTracker
Parameters:
key -
Returns:
InputLocation

getMissing

public String getMissing()
Get the name of the file that must be missing to activate the profile.

Returns:
String

setExists

public void setExists(String exists)
Set the name of the file that must exist to activate the profile.

Parameters:
exists -

setLocation

public void setLocation(Object key,
                        InputLocation location)
Description copied from interface: InputLocationTracker
Sets the location of the specified field.

Specified by:
setLocation in interface InputLocationTracker
Parameters:
key -
location -

setMissing

public void setMissing(String missing)
Set the name of the file that must be missing to activate the profile.

Parameters:
missing -


Copyright © 2001-2012 The Apache Software Foundation. All Rights Reserved.