1 package com.sun.tools.xjc.runtime; 2 3 import org.xml.sax.SAXException ; 4 import com.sun.xml.bind.JAXBObject; 5 6 12 public interface XMLSerializable extends JAXBObject 13 { 14 17 void serializeBody( XMLSerializer target ) throws SAXException ; 18 19 22 void serializeAttributes( XMLSerializer target ) throws SAXException ; 23 24 28 void serializeURIs( XMLSerializer target ) throws SAXException ; 29 30 } 31 | Popular Tags |