View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.3.0,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.codehaus.modello.test.features;
7   
8     //---------------------------------/
9    //- Imported classes and packages -/
10  //---------------------------------/
11  
12  import org.codehaus.modello.test.features.other.PackageNameFeature;
13  import org.codehaus.modello.test.features.other.SubInterfaceInPackage;
14  
15  /**
16   * <code>&lt;field xml.content="true"&gt;</code>: fields as XML
17   * content,
18   *         for every simple type.
19   *       
20   * 
21   * @version $Revision$ $Date$
22   */
23  @SuppressWarnings( "all" )
24  public class XmlContent
25      implements java.io.Serializable
26  {
27  
28        //--------------------------/
29       //- Class/Member Variables -/
30      //--------------------------/
31  
32      /**
33       * Field longContent.
34       */
35      private XmlContentLong longContent;
36  
37      /**
38       * Field longContentWithAttributes.
39       */
40      private XmlContentLongWithAttributes longContentWithAttributes;
41  
42  
43        //-----------/
44       //- Methods -/
45      //-----------/
46  
47      /**
48       * Get the longContent field.
49       * 
50       * @return XmlContentLong
51       */
52      public XmlContentLong getLongContent()
53      {
54          return this.longContent;
55      } //-- XmlContentLong getLongContent()
56  
57      /**
58       * Get the longContentWithAttributes field.
59       * 
60       * @return XmlContentLongWithAttributes
61       */
62      public XmlContentLongWithAttributes getLongContentWithAttributes()
63      {
64          return this.longContentWithAttributes;
65      } //-- XmlContentLongWithAttributes getLongContentWithAttributes()
66  
67      /**
68       * Set the longContent field.
69       * 
70       * @param longContent a longContent object.
71       */
72      public void setLongContent( XmlContentLong longContent )
73      {
74          this.longContent = longContent;
75      } //-- void setLongContent( XmlContentLong )
76  
77      /**
78       * Set the longContentWithAttributes field.
79       * 
80       * @param longContentWithAttributes a longContentWithAttributes
81       * object.
82       */
83      public void setLongContentWithAttributes( XmlContentLongWithAttributes longContentWithAttributes )
84      {
85          this.longContentWithAttributes = longContentWithAttributes;
86      } //-- void setLongContentWithAttributes( XmlContentLongWithAttributes )
87  
88  }