KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > tools > xjc > runtime > UnmarshallableObject


1 package com.sun.tools.xjc.runtime;
2
3
4 /**
5  * Generated classes have to implement this interface for it
6  * to be unmarshallable.
7  *
8  * @author Kohsuke KAWAGUCHI
9  */

10 public interface UnmarshallableObject
11 {
12     /**
13      * Creates an unmarshaller that will unmarshall this object.
14      */

15     UnmarshallingEventHandler createUnmarshaller( UnmarshallingContext context );
16 }
17
Popular Tags