fr.vergne.parsing.samples.xml.layer.Xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parsing-samples Show documentation
Show all versions of parsing-samples Show documentation
Examples of uses of the parsing features.
package fr.vergne.parsing.samples.xml.layer;
import fr.vergne.parsing.layer.standard.Suite;
public class Xml extends Suite {
public Xml() {
super(new XmlHeader(), new Blank(), new XmlTree());
}
public XmlHeader getHeader() {
return get(0);
}
public XmlTree getTree() {
return get(2);
}
}