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

org.cybergarage.xml.NodeList Maven / Gradle / Ivy

/******************************************************************
*
*	CyberXML for Java
*
*	Copyright (C) Satoshi Konno 2002
*
*	File: NodeList.java
*
*	Revision;
*
*	11/27/02
*		- first revision.
*
******************************************************************/

package org.cybergarage.xml;

import java.util.Vector;

public class NodeList extends Vector
{
	public NodeList() 
	{
	}
	
	public Node getNode(int n)
	{
		return get(n);
	}

	public Node getNode(String name) 
	{
		if (name == null)
			return null;
		
		int nLists = size(); 
		for (int n=0; n




© 2015 - 2024 Weber Informatics LLC | Privacy Policy