com.thaiopensource.relaxng.parse.Context Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Trang, a multi-format schema converter based on RELAX NG.
package com.thaiopensource.relaxng.parse;
import org.relaxng.datatype.ValidationContext;
import java.util.Set;
public interface Context extends ValidationContext {
Set prefixes();
Context copy();
}