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 *         Name and Email of the person to be credited for this
018 * change. This can be used when a patch is submitted by a
019 * non-committer.
020 *       
021 * 
022 * @version $Revision$ $Date$
023 */
024@SuppressWarnings( "all" )
025public class DueTo
026    implements java.io.Serializable
027{
028
029      //--------------------------/
030     //- Class/Member Variables -/
031    //--------------------------/
032
033    /**
034     * Name of the person to be credited for this change.
035     */
036    private String name;
037
038    /**
039     * Email of the person to be credited for this change.
040     */
041    private String email;
042
043
044      //-----------/
045     //- Methods -/
046    //-----------/
047
048    /**
049     * Get email of the person to be credited for this change.
050     * 
051     * @return String
052     */
053    public String getEmail()
054    {
055        return this.email;
056    } //-- String getEmail()
057
058    /**
059     * Get name of the person to be credited for this change.
060     * 
061     * @return String
062     */
063    public String getName()
064    {
065        return this.name;
066    } //-- String getName()
067
068    /**
069     * Set email of the person to be credited for this change.
070     * 
071     * @param email a email object.
072     */
073    public void setEmail( String email )
074    {
075        this.email = email;
076    } //-- void setEmail( String )
077
078    /**
079     * Set name of the person to be credited for this change.
080     * 
081     * @param name a name object.
082     */
083    public void setName( String name )
084    {
085        this.name = name;
086    } //-- void setName( String )
087
088}