first commit
This commit is contained in:
23
hrmsEjb/org/apache/xerces/impl/xs/psvi/XSWildcard.java
Normal file
23
hrmsEjb/org/apache/xerces/impl/xs/psvi/XSWildcard.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package org.apache.xerces.impl.xs.psvi;
|
||||
|
||||
public interface XSWildcard extends XSTerm {
|
||||
public static final short NSCONSTRAINT_ANY = 1;
|
||||
|
||||
public static final short NSCONSTRAINT_NOT = 2;
|
||||
|
||||
public static final short NSCONSTRAINT_LIST = 3;
|
||||
|
||||
public static final short PC_STRICT = 1;
|
||||
|
||||
public static final short PC_SKIP = 2;
|
||||
|
||||
public static final short PC_LAX = 3;
|
||||
|
||||
short getConstraintType();
|
||||
|
||||
short getProcessContents();
|
||||
|
||||
StringList getNsConstraintList();
|
||||
|
||||
XSAnnotation getAnnotation();
|
||||
}
|
Reference in New Issue
Block a user