1 57 58 package com.sun.org.apache.xerces.internal.xs; 59 60 63 public interface XSAttributeDeclaration extends XSObject { 64 67 public XSSimpleTypeDefinition getTypeDefinition(); 68 69 74 public short getScope(); 75 76 81 public XSComplexTypeDefinition getEnclosingCTDefinition(); 82 83 86 public short getConstraintType(); 87 88 92 public String getConstraintValue(); 93 94 102 public Object getActualVC() 103 throws XSException; 104 105 119 public short getActualVCType() 120 throws XSException; 121 122 135 public ShortList getItemValueTypes() 136 throws XSException; 137 138 141 public XSAnnotation getAnnotation(); 142 143 } 144 | Popular Tags |