![JAR search and dependency download from the Maven repository](/logo.png)
com.jukta.jtahoe.gen.model.TextNode Maven / Gradle / Ivy
package com.jukta.jtahoe.gen.model;
/**
* @since 1.0
*/
public class TextNode implements Node {
private String text;
public TextNode(String text) {
this.text = text;
}
public String getText() {
return text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy