com.thaiopensource.xml.infer.Schema 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
Jing/Trang - tools for validating and translating RelaxNG
The newest version!
package com.thaiopensource.xml.infer;
import com.thaiopensource.xml.util.Name;
import java.util.Map;
import java.util.HashMap;
public class Schema {
private final Map elementDecls = new HashMap();
private Particle start;
private final Map prefixMap = new HashMap();
public Map getElementDecls() {
return elementDecls;
}
public Map getPrefixMap() {
return prefixMap;
}
public ElementDecl getElementDecl(Name name) {
return elementDecls.get(name);
}
public Particle getStart() {
return start;
}
public void setStart(Particle start) {
this.start = start;
}
}