All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugins.changes.model.Properties Maven / Gradle / Ivy

Go to download

Creates a release history for inclusion into the site and assists in generating an announcement mail.

There is a newer version: 2.12.1
Show newest version
/*
 =================== DO NOT EDIT THIS FILE ====================
 Generated by Modello 1.0.1 on 2012-05-10 17:26:02,
 any modifications will be overwritten.
 ==============================================================
 */

package org.apache.maven.plugins.changes.model;

/**
 * Class Properties.
 * 
 * @version $Revision$ $Date$
 */
public class Properties
    implements java.io.Serializable
{

      //--------------------------/
     //- Class/Member Variables -/
    //--------------------------/

    /**
     * Page Title.
     */
    private String title;

    /**
     * Page Author.
     */
    private Author author;


      //-----------/
     //- Methods -/
    //-----------/

    /**
     * Get page Author.
     * 
     * @return Author
     */
    public Author getAuthor()
    {
        return this.author;
    } //-- Author getAuthor()

    /**
     * Get page Title.
     * 
     * @return String
     */
    public String getTitle()
    {
        return this.title;
    } //-- String getTitle()

    /**
     * Set page Author.
     * 
     * @param author
     */
    public void setAuthor( Author author )
    {
        this.author = author;
    } //-- void setAuthor( Author )

    /**
     * Set page Title.
     * 
     * @param title
     */
    public void setTitle( String title )
    {
        this.title = title;
    } //-- void setTitle( String )


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy