1 57 58 package com.sun.org.apache.xerces.internal.xs; 59 60 64 public interface ItemPSVI { 65 69 public static final short VALIDITY_NOTKNOWN = 0; 70 75 public static final short VALIDITY_INVALID = 1; 76 81 public static final short VALIDITY_VALID = 2; 82 86 public static final short VALIDATION_NONE = 0; 87 91 public static final short VALIDATION_PARTIAL = 1; 92 96 public static final short VALIDATION_FULL = 2; 97 103 public String getValidationContext(); 104 105 111 public short getValidity(); 112 113 119 public short getValidationAttempted(); 120 121 126 public StringList getErrorCodes(); 127 128 132 public String getSchemaNormalizedValue(); 133 134 141 public Object getActualNormalizedValue() 142 throws XSException; 143 144 159 public short getActualNormalizedValueType() 160 throws XSException; 161 162 193 public ShortList getItemValueTypes() 194 throws XSException; 195 196 200 public XSTypeDefinition getTypeDefinition(); 201 202 210 public XSSimpleTypeDefinition getMemberTypeDefinition(); 211 212 217 public String getSchemaDefault(); 218 219 224 public boolean getIsSchemaSpecified(); 225 226 } 227 | Popular Tags |