01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.5-b16-fcs
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2005.12.17 at 09:43:27 AM GMT+07:00
06: //
07:
08: package com.mvnforum.jaxb.db.impl.runtime;
09:
10: import org.xml.sax.SAXException;
11: import com.sun.xml.bind.JAXBObject;
12:
13: /**
14: * For a generated class to be serializable, it has to
15: * implement this interface.
16: *
17: * @author Kohsuke Kawaguchi
18: */
19: public interface XMLSerializable extends JAXBObject {
20: /**
21: * Serializes child elements and texts into the specified target.
22: */
23: void serializeBody(XMLSerializer target) throws SAXException;
24:
25: /**
26: * Serializes attributes into the specified target.
27: */
28: void serializeAttributes(XMLSerializer target) throws SAXException;
29:
30: /**
31: * Declares all the namespace URIs this object is using at
32: * its top-level scope into the specified target.
33: */
34: void serializeURIs(XMLSerializer target) throws SAXException;
35:
36: }
|