things.common.help
Class HelpItem

java.lang.Object
  extended by things.common.help.HelpItem
Direct Known Subclasses:
HelpProperty, HelpUser

public class HelpItem
extends java.lang.Object

A base help item.

Version:
1.0

Version History

EPG - Initial - 10 SEP 08
 
Author:
Erich P. Gatejen

Field Summary
 java.lang.String help
          The help text for the property.
 java.lang.String name
          The name of the property.
 java.lang.String user
          who uses this property?
 
Constructor Summary
HelpItem(java.lang.String name, java.lang.String help)
          Constructor.
HelpItem(java.lang.String name, java.lang.String user, java.lang.String help)
          Constructor.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public java.lang.String name
The name of the property. This is suitable for lookup in a view.


user

public java.lang.String user
who uses this property?


help

public java.lang.String help
The help text for the property.

Constructor Detail

HelpItem

public HelpItem(java.lang.String name,
                java.lang.String help)
Constructor.

Parameters:
name - The name of the help.
help - The help text.

HelpItem

public HelpItem(java.lang.String name,
                java.lang.String user,
                java.lang.String help)
Constructor.

Parameters:
name - The name of the help.
user - The user name for this property.
help - The help text.


Things.