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

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

/******************************************************************
*
*	CyberUPnP for Java
*
*	Copyright (C) Satoshi Konno 2002
*
*	File: ActionList.java
*
*	Revision:
*
*	12/05/02
*		- first revision.
*
******************************************************************/

package org.cybergarage.upnp;

import java.util.Vector;

public class ActionList extends Vector 
{
	////////////////////////////////////////////////
	//	Constants
	////////////////////////////////////////////////
	
	public final static String ELEM_NAME = "actionList";

	////////////////////////////////////////////////
	//	Constructor
	////////////////////////////////////////////////
	
	public ActionList() 
	{
	}
	
	////////////////////////////////////////////////
	//	Methods
	////////////////////////////////////////////////
	
	public Action getAction(int n)
	{
		return (Action)get(n);
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy