1 22 23 28 29 package org.xquark.schema.loader; 30 31 import org.xquark.schema.SchemaConstants; 32 import org.xquark.util.DefaultElementHandler; 33 import org.xquark.util.ElementHandler; 34 35 class AnnotationHandler extends DefaultElementHandler 36 implements SchemaConstants 37 { 38 private static final String RCSRevision = "$Revision: 1.1 $"; 39 private static final String RCSName = "$Name: $"; 40 private Loader loader = null; 41 42 AnnotationHandler() { 43 } 44 45 public ElementHandler startElement(String namespaceURI, String localName, org.xml.sax.Attributes atts) throws org.xml.sax.SAXException 46 { 47 if ( namespaceURI.equals(XMLSCHEMA_URI) ) { 48 if (localName.equals(APPINFO_TAG)) return this; 49 50 if (localName.equals(DOCUMENTATION_TAG)) return this; 51 } 52 53 return this; 54 } 55 } 56 57 | Popular Tags |