1 22 23 package org.xquark.schema.loader; 24 25 import org.xquark.schema.*; 26 import org.xquark.schema.validation.ValidationContextProvider; 27 import org.xquark.schema.validation.ValidationInfo; 28 29 public final class TypeRef extends Type { 30 private static final String RCSRevision = "$Revision: 1.1 $"; 31 private static final String RCSName = "$Name: $"; 32 33 public TypeRef(Schema schema, String name) { 34 super(schema, name, null); 35 } 36 37 public void accept(SchemaVisitor visitor) throws SchemaException { 38 visitor.visit(this); 39 } 40 41 public int getContentType() { 42 return SchemaConstants.MIXED; 43 } 44 45 public SimpleType getValueType() { 46 return null; 47 } 48 49 public ValidationInfo validate(String value, boolean normalize, ValidationContextProvider context) 50 throws SchemaException { 51 return null; 52 } 53 54 public ValidationInfo validate(StringBuffer value, boolean normalize, ValidationContextProvider context) 55 throws SchemaException { 56 return null; 57 } 58 59 } 60 | Popular Tags |