16 lines
329 B
Java
16 lines
329 B
Java
package org.apache.xerces.impl.xs.psvi;
|
|
|
|
public interface XSAttributeDeclaration extends XSObject {
|
|
short getConstraintType();
|
|
|
|
short getScope();
|
|
|
|
String getConstraintValue();
|
|
|
|
XSAnnotation getAnnotation();
|
|
|
|
XSComplexTypeDefinition getEnclosingCTDefinition();
|
|
|
|
XSSimpleTypeDefinition getTypeDefinition();
|
|
}
|