All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.vergne.parsing.samples.xml.layer.RecursiveNode Maven / Gradle / Ivy

There is a newer version: 2.4
Show newest version
package fr.vergne.parsing.samples.xml.layer;

import fr.vergne.parsing.layer.standard.Atom;
import fr.vergne.parsing.layer.standard.Suite;

public class RecursiveNode extends Suite {

	public RecursiveNode() {
		super(new Blank(), new Atom(""), new NodeList(),
				new Blank(), new Atom(""));
	}

	public Fields getFields() {
		return get(2);
	}

	public NodeList getNodeList() {
		return get(4);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy