01: /*
02: * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
03: * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
04: */
05:
06: package javax.xml.bind;
07:
08: /**
09: * This event indicates that a problem was encountered while converting data
10: * from the Java content tree into its lexical representation.
11: *
12: * @author <ul><li>Ryan Shoemaker, Sun Microsystems, Inc.</li><li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li><li>Joe Fialli, Sun Microsystems, Inc.</li></ul>
13: * @version $Revision: 1.1 $
14: * @see ValidationEvent
15: * @see ValidationEventHandler
16: * @see Marshaller
17: * @since JAXB1.0
18: */
19: public interface PrintConversionEvent extends ValidationEvent {
20:
21: }
|