| SerializationContext.java |
/*
* JBoss, the OpenSource WebOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.xml.rpc.encoding;
/** This interface is implemented by the JAX-RPC runtime system in an XML
* processing mechanism specific manner. A serializer uses the
* SerializationContext interface during the serialization to get the context
* information related to the XML processing mechanism and to manage
* information specific to serialization.
*
* @see Serializer
*
* @author Scott.Stark@jboss.org
* @version $Revision: 1.2 $
*/
public interface SerializationContext
{
}
| SerializationContext.java |