All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class w3c.jigsaw.resources.MimeTypeAttribute

java.lang.Object
   |
   +----w3c.tools.store.Attribute
           |
           +----w3c.jigsaw.resources.MimeTypeAttribute

public class MimeTypeAttribute
extends Attribute
The generic class of Mime type attributes.


Constructor Index

 o MimeTypeAttribute(String, Object, int)

Method Index

 o checkValue(Object)
Is the given object a valid MimeTypeAttribute value ?
 o getPickleLength(Object)
Get the number of bytes required to save that attribute value.
 o pickle(DataOutputStream, Object)
Pickle a MIME type to the given output stream.
 o unpickle(DataInputStream)
Unpickle a MIME type from the given input stream.

Constructors

 o MimeTypeAttribute
 public MimeTypeAttribute(String name,
                          Object def,
                          int flags)

Methods

 o checkValue
 public boolean checkValue(Object obj)
Is the given object a valid MimeTypeAttribute value ?

Parameters:
obj - The object to test.
Returns:
A boolean true if okay.
Overrides:
checkValue in class Attribute
 o getPickleLength
 public final int getPickleLength(Object value)
Get the number of bytes required to save that attribute value.

Parameters:
The - value about to be pickled.
Returns:
The number of bytes needed to pickle that value.
Overrides:
getPickleLength in class Attribute
 o pickle
 public void pickle(DataOutputStream out,
                    Object t) throws IOException
Pickle a MIME type 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 a MIME type from the given input stream.

Parameters:
in - The input stream to unpickle from.
Returns:
An instance of String.
Throws: IOException
If some IO error occured.
Overrides:
unpickle in class Attribute

All Packages  Class Hierarchy  This Package  Previous  Next  Index