13 lines
340 B
Java
13 lines
340 B
Java
package org.apache.xerces.impl.xs.psvi;
|
|
|
|
import org.apache.xerces.xni.psvi.AttributePSVI;
|
|
import org.apache.xerces.xni.psvi.ElementPSVI;
|
|
|
|
public interface PSVIProvider {
|
|
AttributePSVI getAttributePSVI(int paramInt);
|
|
|
|
ElementPSVI getElementPSVI();
|
|
|
|
AttributePSVI getAttributePSVIByName(String paramString1, String paramString2);
|
|
}
|