org.appfuse.model
Class LabelValue

java.lang.Object
  extended by org.appfuse.model.LabelValue
All Implemented Interfaces:
Serializable, Comparable

public class LabelValue
extends Object
implements Comparable, Serializable

A simple JavaBean to represent label-value pairs. This is most commonly used when constructing user interface elements which have a label to be displayed to the user, and a corresponding value to be returned to the server. One example is the <html:options> tag.

Note: this class has a natural ordering that is inconsistent with equals.

See Also:
LabelValueBean, Serialized Form

Field Summary
static Comparator CASE_INSENSITIVE_ORDER
          Comparator that can be used for a case insensitive sort of LabelValue objects.
 
Constructor Summary
LabelValue()
          Default constructor.
LabelValue(String label, String value)
          Construct an instance with the supplied property values.
 
Method Summary
 int compareTo(Object o)
          Compare LabelValueBeans based on the label, because that's the human viewable part of the object.
 boolean equals(Object obj)
          LabelValueBeans are equal if their values are both null or equal.
 String getLabel()
           
 String getValue()
           
 int hashCode()
          The hash code is based on the object's value.
 void setLabel(String label)
           
 void setValue(String value)
           
 String toString()
          Return a string representation of this object.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

CASE_INSENSITIVE_ORDER

public static final Comparator CASE_INSENSITIVE_ORDER
Comparator that can be used for a case insensitive sort of LabelValue objects.

Constructor Detail

LabelValue

public LabelValue()
Default constructor.


LabelValue

public LabelValue(String label,
                  String value)
Construct an instance with the supplied property values.

Parameters:
label - The label to be displayed to the user.
value - The value to be returned to the server.
Method Detail

getLabel

public String getLabel()

setLabel

public void setLabel(String label)

getValue

public String getValue()

setValue

public void setValue(String value)

compareTo

public int compareTo(Object o)
Compare LabelValueBeans based on the label, because that's the human viewable part of the object.

Specified by:
compareTo in interface Comparable
See Also:
Comparable

toString

public String toString()
Return a string representation of this object.

Overrides:
toString in class Object

equals

public boolean equals(Object obj)
LabelValueBeans are equal if their values are both null or equal.

Overrides:
equals in class Object
See Also:
Object.equals(java.lang.Object)

hashCode

public int hashCode()
The hash code is based on the object's value.

Overrides:
hashCode in class Object
See Also:
Object.hashCode()


Copyright � 2002-2006