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   * Test of XSD specific parameters: see
17   *         <a
18   * href="http://fisheye.codehaus.org/browse/modello/trunk/modello-plugins/modello-plugin-xsd/src/main/java/org/codehaus/modello/plugin/xsd/metadata/XsdMetadataPlugin.java?r=trunk">XsdMetadataPlugin</a>
19   *         class.
20   *       
21   * 
22   * @version $Revision$ $Date$
23   */
24  @SuppressWarnings( "all" )
25  public class XsdFeatures
26      implements java.io.Serializable
27  {
28  
29        //--------------------------/
30       //- Class/Member Variables -/
31      //--------------------------/
32  
33      /**
34       * Field attribute.
35       */
36      private String attribute;
37  
38  
39        //-----------/
40       //- Methods -/
41      //-----------/
42  
43      /**
44       * Get the attribute field.
45       * 
46       * @return String
47       */
48      public String getAttribute()
49      {
50          return this.attribute;
51      } //-- String getAttribute()
52  
53      /**
54       * Set the attribute field.
55       * 
56       * @param attribute a attribute object.
57       */
58      public void setAttribute( String attribute )
59      {
60          this.attribute = attribute;
61      } //-- void setAttribute( String )
62  
63  }