View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.continuum.web.appearance;
9   
10  /**
11   * Class ContinuumAppearance.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class ContinuumAppearance
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Field footer.
26       */
27      private String footer;
28  
29      /**
30       * Field modelEncoding.
31       */
32      private String modelEncoding = "UTF-8";
33  
34  
35        //-----------/
36       //- Methods -/
37      //-----------/
38  
39      /**
40       * Get the footer field.
41       * 
42       * @return String
43       */
44      public String getFooter()
45      {
46          return this.footer;
47      } //-- String getFooter()
48  
49      /**
50       * Get the modelEncoding field.
51       * 
52       * @return String
53       */
54      public String getModelEncoding()
55      {
56          return this.modelEncoding;
57      } //-- String getModelEncoding()
58  
59      /**
60       * Set the footer field.
61       * 
62       * @param footer
63       */
64      public void setFooter( String footer )
65      {
66          this.footer = footer;
67      } //-- void setFooter( String )
68  
69      /**
70       * Set the modelEncoding field.
71       * 
72       * @param modelEncoding
73       */
74      public void setModelEncoding( String modelEncoding )
75      {
76          this.modelEncoding = modelEncoding;
77      } //-- void setModelEncoding( String )
78  
79  }