org.apache.maven.plugins.changes.model.Properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-changes-plugin Show documentation
Show all versions of maven-changes-plugin Show documentation
Creates a release history for inclusion into the site and assists in generating an announcement mail.
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2012-09-11 21:38:58,
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