KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > dozer > util > mapping > vo > jaxb > employee > impl > runtime > SAXUnmarshallerHandler


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.4-b18-fcs
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.10.05 at 10:03:40 CEST
6
//
7

8 package net.sf.dozer.util.mapping.vo.jaxb.employee.impl.runtime;
9
10 import javax.xml.bind.UnmarshallerHandler;
11 import javax.xml.bind.ValidationEvent;
12
13 import org.xml.sax.SAXException JavaDoc;
14
15 /**
16  * Unified event handler that processes
17  * both the SAX events and error events.
18  *
19  * <p>
20  * This interface refines {@link ContentHandler} as follows:
21  * <ol>
22  * <li>element names and attribute names must be {@link String#intern()}ed.
23  * <li>namespace prefix and uris must be {@link String#intern()}ed.
24  * </ol>
25  */

26 public interface SAXUnmarshallerHandler extends UnmarshallerHandler {
27     
28     /**
29      * Reports an error to the user, and asks if s/he wants
30      * to recover. If the canRecover flag is false, regardless
31      * of the client instruction, an exception will be thrown.
32      *
33      * Only if the flag is true and the user wants to recover from an error,
34      * the method returns normally.
35      *
36      * The thrown exception will be catched by the unmarshaller.
37      */

38     void handleEvent( ValidationEvent event, boolean canRecover ) throws SAXException JavaDoc;
39 }
40
Popular Tags