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

com.altova.text.ITextNode Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
////////////////////////////////////////////////////////////////////////
//
// ITextNode.java
//
// This file was generated by MapForce 2017sp2.
//
// YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
// OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
//
// Refer to the MapForce Documentation for further details.
// http://www.altova.com/mapforce
//
////////////////////////////////////////////////////////////////////////

package com.altova.text;

public interface ITextNode {
	final static byte Undefined = 0;

	final static byte DataElement = 1;

	final static byte Composite = 2;

	final static byte Segment = 3;

	final static byte Group = 4;
    
    final static byte SubComposite = 5;
	
	final static byte ErrorList = 6;

	final static byte Select = 7;

	ITextNode getRoot();

	ITextNode getParent();

	void setParent(ITextNode rhs);

	ITextNodeList getChildren();

	String getName();

	void setName(String name);

	String getValue();

	void setValue(String value);

	byte getNodeClass();

	void setNodeClass(byte rhs);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy