org.w3c.jigsaw.frames
Class MimeTypeAttribute
java.lang.Object
|
+--org.w3c.tools.resources.Attribute
|
+--org.w3c.jigsaw.frames.MimeTypeAttribute
- public class MimeTypeAttribute
- extends org.w3c.tools.resources.Attribute
The generic class of Mime type attributes.
- See Also:
- Serialized Form
Fields inherited from class org.w3c.tools.resources.Attribute |
COMPUTED,
DONTSAVE,
EDITABLE,
flags,
MANDATORY,
name,
type |
Constructor Summary |
MimeTypeAttribute(java.lang.String name,
java.lang.Object def,
int flags)
|
Method Summary |
boolean |
checkValue(java.lang.Object obj)
Is the given object a valid MimeTypeAttribute value ? |
int |
getPickleLength(java.lang.Object value)
Get the number of bytes required to save that attribute value. |
void |
pickle(java.io.DataOutputStream out,
java.lang.Object t)
Pickle a MIME type to the given output stream. |
java.lang.Object |
unpickle(java.io.DataInputStream in)
Unpickle a MIME type from the given input stream. |
Methods inherited from class org.w3c.tools.resources.Attribute |
checkFlag,
getDefault,
getName,
getType,
stringify |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
MimeTypeAttribute
public MimeTypeAttribute(java.lang.String name,
java.lang.Object def,
int flags)
checkValue
public boolean checkValue(java.lang.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 org.w3c.tools.resources.Attribute
getPickleLength
public final int getPickleLength(java.lang.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 org.w3c.tools.resources.Attribute
pickle
public void pickle(java.io.DataOutputStream out,
java.lang.Object t)
throws java.io.IOException
- Pickle a MIME type to the given output stream.
- Parameters:
out
- The output stream to pickle to.obj
- The object to pickle.- Throws:
- java.io.IOException - If some IO error occured.
- Overrides:
- pickle in class org.w3c.tools.resources.Attribute
unpickle
public java.lang.Object unpickle(java.io.DataInputStream in)
throws java.io.IOException
- Unpickle a MIME type from the given input stream.
- Parameters:
in
- The input stream to unpickle from.- Returns:
- An instance of String.
- Throws:
- java.io.IOException - If some IO error occured.
- Overrides:
- unpickle in class org.w3c.tools.resources.Attribute