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