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

14 lines
383 B
Java

package org.apache.xerces.xni.psvi;
import org.apache.xerces.impl.xs.psvi.XSElementDeclaration;
import org.apache.xerces.impl.xs.psvi.XSModel;
import org.apache.xerces.impl.xs.psvi.XSNotationDeclaration;
public interface ElementPSVI extends ItemPSVI {
XSElementDeclaration getElementDeclaration();
XSModel getSchemaInformation();
XSNotationDeclaration getNotation();
}