All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.doxia.site.skin.Prerequisites Maven / Gradle / Ivy

The newest version!
/*
 =================== DO NOT EDIT THIS FILE ====================
 
 Generated by Modello 2.4.0,
 
 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 = "2.0.0-M12";


      //-----------/
     //- 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 a doxiaSitetools object.
     */
    public void setDoxiaSitetools( String doxiaSitetools )
    {
        this.doxiaSitetools = doxiaSitetools;
    } //-- void setDoxiaSitetools( String )

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy