001// =================== DO NOT EDIT THIS FILE ====================
002// Generated by Modello 2.3.0,
003// any modifications will be overwritten.
004// ==============================================================
005
006package org.codehaus.modello.test.features;
007
008  //---------------------------------/
009 //- Imported classes and packages -/
010//---------------------------------/
011
012import org.codehaus.modello.test.features.other.PackageNameFeature;
013import org.codehaus.modello.test.features.other.SubInterfaceInPackage;
014
015/**
016 * Test of XSD specific parameters: see
017 *         <a
018 * 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>
019 *         class.
020 *       
021 * 
022 * @version $Revision$ $Date$
023 */
024@SuppressWarnings( "all" )
025public class XsdFeatures
026    implements java.io.Serializable
027{
028
029      //--------------------------/
030     //- Class/Member Variables -/
031    //--------------------------/
032
033    /**
034     * Field attribute.
035     */
036    private String attribute;
037
038
039      //-----------/
040     //- Methods -/
041    //-----------/
042
043    /**
044     * Get the attribute field.
045     * 
046     * @return String
047     */
048    public String getAttribute()
049    {
050        return this.attribute;
051    } //-- String getAttribute()
052
053    /**
054     * Set the attribute field.
055     * 
056     * @param attribute a attribute object.
057     */
058    public void setAttribute( String attribute )
059    {
060        this.attribute = attribute;
061    } //-- void setAttribute( String )
062
063}