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