org.apache.maven.doxia.site.Banner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doxia-site-model Show documentation
Show all versions of doxia-site-model Show documentation
The Site Model handles the descriptor for sites, also known as site.xml.
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;
/**
* Banner logo on the masthead of the site.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class Banner
extends LinkItem
implements java.io.Serializable, java.lang.Cloneable
{
//-----------/
//- Methods -/
//-----------/
/**
* Method clone.
*
* @return Banner
*/
public Banner clone()
{
try
{
Banner copy = (Banner) 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 );
}
} //-- Banner clone()
}