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