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

org.bitbucket.gkutiel.at.NodeText Maven / Gradle / Ivy

There is a newer version: 3-RELEASE
Show newest version
package org.bitbucket.gkutiel.at;

public class NodeText extends NodeWithNoChildren {

	final String txt;

	public NodeText(final String txt) {
		this.txt = txt;
	}

	@Override public void accept(final Visitor visitor) {
		visitor.visitText(txt);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy