Class w3c.jigsaw.resources.BooleanAttribute
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class w3c.jigsaw.resources.BooleanAttribute

java.lang.Object
   |
   +----w3c.jigsaw.resources.Attribute
           |
           +----w3c.jigsaw.resources.BooleanAttribute

public class BooleanAttribute
extends Attribute
The generic description of an BooleanAttribute.

Constructor Index

 o BooleanAttribute(String, Boolean, int)

Method Index

 o checkValue(Object)
Is the given object a valid BooleanAttribute value ?
 o pickle(DataOutputStream, Object)
Pickle an boolean to the given output stream.
 o unpickle(DataInputStream)
Unpickle an boolean from the given input stream.

Constructors

 o BooleanAttribute
  public BooleanAttribute(String name,
                          Boolean def,
                          int flags)

Methods

 o checkValue
  public boolean checkValue(Object obj)
Is the given object a valid BooleanAttribute value ?
Parameters:
obj - The object to test.
Returns:
A boolean true if okay.
Overrides:
checkValue in class Attribute
 o pickle
  public void pickle(DataOutputStream out,
                     Object b) throws IOException
Pickle an boolean to the given output stream.
Parameters:
out - The output stream to pickle to.
obj - The object to pickle.
Throws: IOException
If some IO error occured.
Overrides:
pickle in class Attribute
 o unpickle
  public Object unpickle(DataInputStream in) throws IOException
Unpickle an boolean from the given input stream.
Parameters:
in - The input stream to unpickle from.
Returns:
An instance of Boolean.
Throws: IOException
If some IO error occured.
Overrides:
unpickle in class Attribute

All Packages  Class Hierarchy  This Package  Previous  Next  Index