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

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