1 55 56 package org.jboss.axis.schema; 57 58 import org.jboss.axis.encoding.TypeMapping; 59 60 import javax.xml.namespace.QName ; 61 62 68 public interface SchemaVersion 69 { 70 public static SchemaVersion SCHEMA_1999 = new SchemaVersion1999(); 71 public static SchemaVersion SCHEMA_2000 = new SchemaVersion2000(); 72 public static SchemaVersion SCHEMA_2001 = new SchemaVersion2001(); 73 74 80 public QName getNilQName(); 81 82 87 public String getXsiURI(); 88 89 94 public String getXsdURI(); 95 96 99 public void registerSchemaSpecificTypes(TypeMapping tm); 100 } 101 | Popular Tags |