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

com.agimatec.commons.config.TextNode Maven / Gradle / Ivy

There is a newer version: 2.5.27
Show newest version
package com.agimatec.commons.config;


/**
 * Title:
 * Description:
 * Company:
 *
 * @author
 */

public class TextNode extends Node {
    protected String value;

    public TextNode() {
    }

    public Object getObjectValue() {
        return value;
    }

    public String getValue() {
        return value;
    }

    public void setValue(final String aValue) {
        value = aValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy