org.w3c.tools.resources
Class BooleanAttribute

java.lang.Object
  |
  +--org.w3c.tools.resources.Attribute
        |
        +--org.w3c.tools.resources.SimpleAttribute
              |
              +--org.w3c.tools.resources.BooleanAttribute

public class BooleanAttribute
extends SimpleAttribute

The generic description of an BooleanAttribute.

See Also:
Serialized Form

Fields inherited from class org.w3c.tools.resources.Attribute
COMPUTED, DONTSAVE, EDITABLE, flags, MANDATORY, name, type
 
Constructor Summary
BooleanAttribute()
           
BooleanAttribute(java.lang.String name, java.lang.Boolean def, int flags)
           
 
Method Summary
 boolean checkValue(java.lang.Object obj)
          Is the given object a valid BooleanAttribute value ?
 java.lang.String pickle(java.lang.Object obj)
          Pickle an integer to the given output stream.
 java.lang.Object unpickle(java.lang.String value)
          Unpickle an integer from the given input stream.
 
Methods inherited from class org.w3c.tools.resources.SimpleAttribute
stringify
 
Methods inherited from class org.w3c.tools.resources.Attribute
checkFlag, getDefault, getFlag, getName, getType, setFlag, setName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BooleanAttribute

public BooleanAttribute(java.lang.String name,
                        java.lang.Boolean def,
                        int flags)

BooleanAttribute

public BooleanAttribute()
Method Detail

checkValue

public boolean checkValue(java.lang.Object obj)
Is the given object a valid BooleanAttribute value ?
Overrides:
checkValue in class Attribute
Parameters:
obj - The object to test.
Returns:
A boolean true if okay.

pickle

public java.lang.String pickle(java.lang.Object obj)
Pickle an integer to the given output stream.
Overrides:
pickle in class SimpleAttribute
Parameters:
obj - The object to pickle.

unpickle

public java.lang.Object unpickle(java.lang.String value)
Unpickle an integer from the given input stream.
Overrides:
unpickle in class SimpleAttribute
Parameters:
value - the string representation of this integer
Returns:
An instance of Integer.