Files
HRMS/hrmsEjb/org/apache/xerces/impl/xs/psvi/XSAttributeDeclaration.java
2025-07-28 13:56:49 +05:30

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();
}