This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.beans
class Encoder

java.lang.Object extended by java.beans.Encoder
Direct Known Subclasses:
XMLEncoder

public class Encoder
extends Object

An Encoder is a class which can be used to create files or streams that encode the state of a collection of JavaBeans in terms of their public APIs. The Encoder, in conjunction with its persistence delegates, is responsible for breaking the object graph down into a series of Statementss and Expressions which can be used to create it. A subclass typically provides a syntax for these expressions using some human readable form - like Java source code or XML.


Constructor Summary

          
 
Method Summary
 Object
get(Object oldInstance)

          Returns a tentative value for oldInstance in the environment created by this stream.
 ExceptionListener

          Gets the exception handler for this stream.
 PersistenceDelegate

          Returns the persistence delegate for the given type.
 Object
remove(Object oldInstance)

          Removes the entry for this instance, returning the old entry.
 void

          Sets the exception handler for this stream to exceptionListener.
 void
setPersistenceDelegate(Class type, PersistenceDelegate persistenceDelegate)

          Sets the persistence delegate associated with this type to persistenceDelegate.
 void

          The implementation first checks to see if an expression with this value has already been written.
protected void

          Write the specified object to the output stream.
 void

          Writes statement oldStm to the stream.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Encoder

public Encoder()
Method Detail

get

public Object get(Object oldInstance)
Returns a tentative value for oldInstance in the environment created by this stream. A persistence delegate can use its mutatesTo method to determine whether this value may be initialized to form the equivalent object at the output or whether a new object must be instantiated afresh. If the stream has not yet seen this value, null is returned.

Parameters:
oldInstance - The instance to be looked up.
Returns:
The object, null if the object has not been seen before.

getExceptionListener

public ExceptionListener getExceptionListener()
Gets the exception handler for this stream.

Returns:
The exception handler for this stream; Will return the default exception listener if this has not explicitly been set.

getPersistenceDelegate

public PersistenceDelegate getPersistenceDelegate(Class type)
Returns the persistence delegate for the given type. The persistence delegate is calculated by applying the following of rules in order:

remove

public Object remove(Object oldInstance)
Removes the entry for this instance, returning the old entry.

Parameters:
oldInstance - The entry that should be removed.
Returns:
The entry that was removed.

setExceptionListener

public void setExceptionListener(ExceptionListener exceptionListener)
Sets the exception handler for this stream to exceptionListener. The exception handler is notified when this stream catches recoverable exceptions.

Parameters:
exceptionListener - The exception handler for this stream; if null the default exception listener will be used.

setPersistenceDelegate

public void setPersistenceDelegate(Class type,
                                   PersistenceDelegate persistenceDelegate)
Sets the persistence delegate associated with this type to persistenceDelegate.

Parameters:
type - The class of objects that persistenceDelegate applies to.
persistenceDelegate - The persistence delegate for instances of type.

writeExpression

public void writeExpression(Expression oldExp)
The implementation first checks to see if an expression with this value has already been written. If not, the expression is cloned, using the same procedure as writeStatement, and the value of this expression is reconciled with the value of the cloned expression by calling writeObject.

Parameters:
oldExp - The expression to be written to the stream.

writeObject

protected void writeObject(Object o)
Write the specified object to the output stream. The serialized form will denote a series of expressions, the combined effect of which will create an equivalent object when the input stream is read. By default, the object is assumed to be a JavaBean with a nullary constructor, whose state is defined by the matching pairs of "setter" and "getter" methods returned by the Introspector.

Parameters:
o - The object to be written to the stream.

writeStatement

public void writeStatement(Statement oldStm)
Writes statement oldStm to the stream. The oldStm should be written entirely in terms of the callers environment, i.e. the target and all arguments should be part of the object graph being written. These expressions represent a series of "what happened" expressions which tell the output stream how to produce an object graph like the original.

The implementation of this method will produce a second expression to represent the same expression in an environment that will exist when the stream is read. This is achieved simply by calling writeObject on the target and all the arguments and building a new expression with the results.

Parameters:
oldStm - The expression to be written to the stream.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.