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

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

There is a newer version: 2.0.4
Show newest version
////////////////////////////////////////////////////////////////////////
//
// ITextNodeList.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 ITextNodeList {
	void add(ITextNode rhs);

	int size();

	ITextNode getAt(int index);

	boolean contains(ITextNode rhs);

	TextNodeList filterByName(String name);

   	void removeByName(String name);

	void insertAt(ITextNode rhs, int index);

	void removeAt(int index);

	public ITextNode getFirstNodeByName(String name);

	public ITextNode getLastNodeByName(String name);

	public void moveNode(ITextNode node, int index);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy