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