org.apache.maven.model.ActivationProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2009-08-06 15:13:09,
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$
*/
public class ActivationProperty
implements java.io.Serializable
{
//--------------------------/
//- 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;
//-----------/
//- Methods -/
//-----------/
/**
* 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()
/**
* 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 )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy