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

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

There is a newer version: 2.6.0
Show newest version
/******************************************************************
*
*	CyberXML for Java
*
*	Copyright (C) Satoshi Konno 2002
*
*	File: AttributeList.java
*
*	Revision;
*
*	11/27/02
*		- first revision.
*
******************************************************************/

package org.cybergarage.xml;

import java.util.Vector;

public class AttributeList extends Vector
{
	public AttributeList() 
	{
	}
	
	public Attribute getAttribute(int n)
	{
		return get(n);
	}
	
	public Attribute getAttribute(String name) 
	{
		if (name == null)
			return null;
		
		int nLists = size(); 
		for (int n=0; n




© 2015 - 2024 Weber Informatics LLC | Privacy Policy