org.apache.maven.plugin.javadoc.options
Class Group

java.lang.Object
  extended by org.apache.maven.plugin.javadoc.options.Group
All Implemented Interfaces:
Serializable

public class Group
extends Object
implements Serializable

A Group parameter.

Version:
$Revision: 829396 $ $Date: 2012-08-19 17:35:19 +0000 (Sun, 19 Aug 2012) $
See Also:
Serialized Form

Constructor Summary
Group()
           
 
Method Summary
 boolean equals(Object other)
          Method equals.
 String getPackages()
          Get packages can be any package name, or can be the start of any package name followed by an asterisk (*).
 String getTitle()
          Get title can be any text, and can include white space.
 int hashCode()
          Method hashCode.
 void setPackages(String packages)
          Set packages can be any package name, or can be the start of any package name followed by an asterisk (*).
 void setTitle(String title)
          Set title can be any text, and can include white space.
 String toString()
          Method toString.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Group

public Group()
Method Detail

equals

public boolean equals(Object other)
Method equals.

Overrides:
equals in class Object
Parameters:
other -
Returns:
boolean

getPackages

public String getPackages()
Get packages can be any package name, or can be the start of any package name followed by an asterisk (*). The asterisk is a wildcard meaning "match any characters". This is the only wildcard allowed. Multiple patterns can be included in a group by separating them with colons (:).

Returns:
String

getTitle

public String getTitle()
Get title can be any text, and can include white space. This text is placed in the table heading for the group.

Returns:
String

hashCode

public int hashCode()
Method hashCode.

Overrides:
hashCode in class Object
Returns:
int

setPackages

public void setPackages(String packages)
Set packages can be any package name, or can be the start of any package name followed by an asterisk (*). The asterisk is a wildcard meaning "match any characters". This is the only wildcard allowed. Multiple patterns can be included in a group by separating them with colons (:).

Parameters:
packages -

setTitle

public void setTitle(String title)
Set title can be any text, and can include white space. This text is placed in the table heading for the group.

Parameters:
title -

toString

public String toString()
Method toString.

Overrides:
toString in class Object
Returns:
String


Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.