1 19 package org.netbeans.modules.xml.xsd; 20 21 import org.xml.sax.Attributes ; 22 23 27 class Type extends SchemaElement { 28 29 public static final String XS_SIMPLE_TYPE = "simpleType"; 30 public static final String XS_COMPLEX_TYPE = "complexType"; 31 32 33 public static final Type XS_STRING = new Type(); 34 35 36 private Type() { 37 } 38 39 protected Type(String namespaceURI, String qname, Attributes attributes, String schemaPrefix) { 40 super(namespaceURI, qname, attributes, schemaPrefix); 41 } 42 43 } 44 | Popular Tags |