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 * Class XmlFieldsOrderParent2.
017 * 
018 * @version $Revision$ $Date$
019 */
020@SuppressWarnings( "all" )
021public class XmlFieldsOrderParent2
022    implements java.io.Serializable
023{
024
025      //--------------------------/
026     //- Class/Member Variables -/
027    //--------------------------/
028
029    /**
030     * Field field.
031     */
032    private String field;
033
034
035      //-----------/
036     //- Methods -/
037    //-----------/
038
039    /**
040     * Get the field field.
041     * 
042     * @return String
043     */
044    public String getField()
045    {
046        return this.field;
047    } //-- String getField()
048
049    /**
050     * Set the field field.
051     * 
052     * @param field a field object.
053     */
054    public void setField( String field )
055    {
056        this.field = field;
057    } //-- void setField( String )
058
059}