1 16 17 package org.apache.xerces.xs; 18 19 22 public interface XSAttributeDeclaration extends XSObject { 23 26 public XSSimpleTypeDefinition getTypeDefinition(); 27 28 33 public short getScope(); 34 35 40 public XSComplexTypeDefinition getEnclosingCTDefinition(); 41 42 45 public short getConstraintType(); 46 47 51 public String getConstraintValue(); 52 53 61 public Object getActualVC() 62 throws XSException; 63 64 78 public short getActualVCType() 79 throws XSException; 80 81 94 public ShortList getItemValueTypes() 95 throws XSException; 96 97 100 public XSAnnotation getAnnotation(); 101 102 } 103 | Popular Tags |