net.sf.webmancer.base
Class ApplicationInformation

java.lang.Object
  extended by net.sf.webmancer.base.ApplicationInformation
All Implemented Interfaces:
IApplicationInformation

public class ApplicationInformation
extends java.lang.Object
implements IApplicationInformation

The ApplicationInformation class is intended to hold the basic information about the application -- the name of the application, version and the author's name is stored here.

Author:
Michal Burda

Constructor Summary
ApplicationInformation()
          Constructs the ApplicationInformation.
 
Method Summary
 java.lang.String getAuthor()
          Get the author of the application.
 java.lang.String getTitle()
          Get the name of the application.
 java.lang.String getVersion()
          Get the version of the application.
 void setAuthor(java.lang.String author)
          Sets the author.
 void setTitle(java.lang.String title)
          Sets the application's title.
 void setVersion(java.lang.String version)
          Sets the version.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ApplicationInformation

public ApplicationInformation()
Constructs the ApplicationInformation.

Method Detail

setTitle

public void setTitle(java.lang.String title)
Sets the application's title.

Parameters:
title - the application's title to set

setAuthor

public void setAuthor(java.lang.String author)
Sets the author.

Parameters:
author - the author to set

setVersion

public void setVersion(java.lang.String version)
Sets the version.

Parameters:
version - the version to set

getTitle

public java.lang.String getTitle()
Description copied from interface: IApplicationInformation
Get the name of the application.

Specified by:
getTitle in interface IApplicationInformation
Returns:
the title of the application
See Also:
IApplicationInformation.getTitle()

getVersion

public java.lang.String getVersion()
Description copied from interface: IApplicationInformation
Get the version of the application.

Specified by:
getVersion in interface IApplicationInformation
Returns:
the version
See Also:
IApplicationInformation.getVersion()

getAuthor

public java.lang.String getAuthor()
Description copied from interface: IApplicationInformation
Get the author of the application.

Specified by:
getAuthor in interface IApplicationInformation
Returns:
the author
See Also:
IApplicationInformation.getAuthor()


Copyright © 2006-2007. All Rights Reserved.