org.apache.maven.doxia.site.skin.Prerequisites Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doxia-skin-model Show documentation
Show all versions of doxia-skin-model Show documentation
The Skin Model defines metadata for Doxia Sitetools skins.
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.9.1,
// any modifications will be overwritten.
// ==============================================================
package org.apache.maven.doxia.site.skin;
/**
* Describes the prerequisites a skin can have.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class Prerequisites
implements java.io.Serializable, java.lang.Cloneable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
*
* The minimum version of Doxia Sitetools required
* to use the resulting skin.
*
*
*/
private String doxiaSitetools = "1.7";
//-----------/
//- Methods -/
//-----------/
/**
* Method clone.
*
* @return Prerequisites
*/
public Prerequisites clone()
{
try
{
Prerequisites copy = (Prerequisites) super.clone();
return copy;
}
catch ( java.lang.Exception ex )
{
throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
+ " does not support clone()" ).initCause( ex );
}
} //-- Prerequisites clone()
/**
* Get the minimum version of Doxia Sitetools required to use
* the resulting skin.
*
* @return String
*/
public String getDoxiaSitetools()
{
return this.doxiaSitetools;
} //-- String getDoxiaSitetools()
/**
* Set the minimum version of Doxia Sitetools required to use
* the resulting skin.
*
* @param doxiaSitetools
*/
public void setDoxiaSitetools( String doxiaSitetools )
{
this.doxiaSitetools = doxiaSitetools;
} //-- void setDoxiaSitetools( String )
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy