KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > bind > ParseConversionEvent


1 /*
2  * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
3  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4  */

5
6 package javax.xml.bind;
7
8 /**
9  * This event indicates that a problem was encountered while converting a
10  * string from the XML data into a value of the target Java data type.
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.2 $
14  * @see ValidationEvent
15  * @see ValidationEventHandler
16  * @see Unmarshaller
17  * @since JAXB1.0
18  */

19 public interface ParseConversionEvent extends ValidationEvent {
20
21 }
22
Popular Tags