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

org.cybergarage.upnp.IconList Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
/******************************************************************
*
*	CyberUPnP for Java
*
*	Copyright (C) Satoshi Konno 2002
*
*	File: IconList.java
*
*	Revision;
*
*	12/04/02
*		- first revision.
*
******************************************************************/

package org.cybergarage.upnp;

import java.util.Vector;

public class IconList extends Vector
{
	////////////////////////////////////////////////
	//	Constants
	////////////////////////////////////////////////
	
	public final static String ELEM_NAME = "iconList";

	////////////////////////////////////////////////
	//	Constructor
	////////////////////////////////////////////////
	
	public IconList() 
	{
	}
	
	////////////////////////////////////////////////
	//	Methods
	////////////////////////////////////////////////
	
	public Icon getIcon(int n)
	{
		return get(n);
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy