View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.1.2,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.doxia.site;
7   
8   /**
9    * Banner logo on the masthead of the site.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class Banner
15      extends LinkItem
16      implements java.io.Serializable, java.lang.Cloneable
17  {
18  
19        //-----------/
20       //- Methods -/
21      //-----------/
22  
23      /**
24       * Method clone.
25       * 
26       * @return Banner
27       */
28      public Banner clone()
29      {
30          try
31          {
32              Banner copy = (Banner) super.clone();
33  
34              return copy;
35          }
36          catch ( java.lang.Exception ex )
37          {
38              throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
39                  + " does not support clone()" ).initCause( ex );
40          }
41      } //-- Banner clone()
42  
43  }