1 package com.sun.tools.xjc.runtime;2 3 4 /**5 * Generated classes have to implement this interface for it6 * to be unmarshallable.7 * 8 * @author Kohsuke KAWAGUCHI9 */10 public interface UnmarshallableObject11 {12 /**13 * Creates an unmarshaller that will unmarshall this object.14 */15 UnmarshallingEventHandler createUnmarshaller( UnmarshallingContext context );16 }17