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 *         A single action done on the project, during this
018 * release.
019 *       
020 * 
021 * @version $Revision$ $Date$
022 */
023@SuppressWarnings( "all" )
024public class Action
025    implements java.io.Serializable
026{
027
028      //--------------------------/
029     //- Class/Member Variables -/
030    //--------------------------/
031
032    /**
033     * 
034     *             A short description of the action taken.
035     *           
036     */
037    private String action;
038
039    /**
040     * 
041     *             
042     *             <p>Name of developer who committed the
043     * change.</p>
044     *             <p>This can be either the id of the developer,
045     * as specified in the developers section of the pom.xml file,
046     * or the name of the developer. If you generate a changes
047     * report and specify the id of the developer, a link is
048     * created to that developer in the team-list.html page.</p>
049     *             
050     *           
051     */
052    private String dev;
053
054
055      //-----------/
056     //- Methods -/
057    //-----------/
058
059    /**
060     * Get a short description of the action taken.
061     * 
062     * @return String
063     */
064    public String getAction()
065    {
066        return this.action;
067    } //-- String getAction()
068
069    /**
070     * Get <p>Name of developer who committed the change.</p>
071     *             <p>This can be either the id of the developer,
072     * as specified in the developers section of the pom.xml file,
073     * or the name of the developer. If you generate a changes
074     * report and specify the id of the developer, a link is
075     * created to that developer in the team-list.html page.</p>
076     * 
077     * @return String
078     */
079    public String getDev()
080    {
081        return this.dev;
082    } //-- String getDev()
083
084    /**
085     * Set a short description of the action taken.
086     * 
087     * @param action a action object.
088     */
089    public void setAction( String action )
090    {
091        this.action = action;
092    } //-- void setAction( String )
093
094    /**
095     * Set <p>Name of developer who committed the change.</p>
096     *             <p>This can be either the id of the developer,
097     * as specified in the developers section of the pom.xml file,
098     * or the name of the developer. If you generate a changes
099     * report and specify the id of the developer, a link is
100     * created to that developer in the team-list.html page.</p>
101     * 
102     * @param dev a dev object.
103     */
104    public void setDev( String dev )
105    {
106        this.dev = dev;
107    } //-- void setDev( String )
108
109}