org.apache.maven.plugins.changes.model.Properties Maven / Gradle / Ivy
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2016-10-29 20:31:54,
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 -/
//--------------------------/
/**
* The page title.
*/
private String title;
/**
* The page author.
*/
private Author author;
//-----------/
//- Methods -/
//-----------/
/**
* Get the page author.
*
* @return Author
*/
public Author getAuthor()
{
return this.author;
} //-- Author getAuthor()
/**
* Get the page title.
*
* @return String
*/
public String getTitle()
{
return this.title;
} //-- String getTitle()
/**
* Set the page author.
*
* @param author
*/
public void setAuthor( Author author )
{
this.author = author;
} //-- void setAuthor( Author )
/**
* Set the page title.
*
* @param title
*/
public void setTitle( String title )
{
this.title = title;
} //-- void setTitle( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy