org.bitbucket.gkutiel.at.NodeText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of at-core Show documentation
Show all versions of at-core Show documentation
A parser and renderer engine for the at syntax
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);
}
}