ActivationProperty.java
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.9.1,
// any modifications will be overwritten.
// ==============================================================
package org.apache.maven.model;
/**
* This is the property specification used to activate a profile.
* If the value field
* is empty, then the existence of the named property will
* activate the profile, otherwise it
* does a case-sensitive match against the property value
* as well.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class ActivationProperty
implements java.io.Serializable, java.lang.Cloneable, org.apache.maven.model.InputLocationTracker
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The name of the property to be used to activate a profile.
*/
private String name;
/**
* The value of the property required to activate a profile.
*/
private String value;
/**
* Field locations.
*/
private java.util.Map<Object, InputLocation> locations;
//-----------/
//- Methods -/
//-----------/
/**
* Method clone.
*
* @return ActivationProperty
*/
public ActivationProperty clone()
{
try
{
ActivationProperty copy = (ActivationProperty) super.clone();
if ( copy.locations != null )
{
copy.locations = new java.util.LinkedHashMap( copy.locations );
}
return copy;
}
catch ( java.lang.Exception ex )
{
throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
+ " does not support clone()" ).initCause( ex );
}
} //-- ActivationProperty clone()
/**
*
*
* @param key
* @return InputLocation
*/
public InputLocation getLocation( Object key )
{
return ( locations != null ) ? locations.get( key ) : null;
} //-- InputLocation getLocation( Object )
/**
* Get the name of the property to be used to activate a
* profile.
*
* @return String
*/
public String getName()
{
return this.name;
} //-- String getName()
/**
* Get the value of the property required to activate a
* profile.
*
* @return String
*/
public String getValue()
{
return this.value;
} //-- String getValue()
/**
*
*
* @param key
* @param location
*/
public void setLocation( Object key, InputLocation location )
{
if ( location != null )
{
if ( this.locations == null )
{
this.locations = new java.util.LinkedHashMap<Object, InputLocation>();
}
this.locations.put( key, location );
}
} //-- void setLocation( Object, InputLocation )
/**
* Set the name of the property to be used to activate a
* profile.
*
* @param name
*/
public void setName( String name )
{
this.name = name;
} //-- void setName( String )
/**
* Set the value of the property required to activate a
* profile.
*
* @param value
*/
public void setValue( String value )
{
this.value = value;
} //-- void setValue( String )
}