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

cn.bluejoe.xmlbeans.node.value.StringValueNode Maven / Gradle / Ivy

package cn.bluejoe.xmlbeans.node.value;

import org.dom4j.Element;

/**
 * @author [email protected]
 */
public class StringValueNode extends AbstractXmlNode implements ValueNode
{
	String _value;

	public String getValue()
	{
		return _value;
	}

	public void setValue(String value)
	{
		_value = value;
	}

	public void writeTo(Element parentElement)
	{
		Element valueElement = parentElement.addElement("value");
		valueElement.setText(_value);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy