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

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

Go to download

A pure Java Open Source implementation of the UPnP stack for JDK 1.4 or above

The newest version!
/******************************************************************
*
*	CyberUPnP for Java
*
*	Copyright (C) Satoshi Konno 2002
*
*	File: ServiceStateTable.java
*
*	Revision:
*
*	12/06/02
*		- first revision.
*
******************************************************************/

package org.cybergarage.upnp;

import java.util.Vector;

public class ServiceStateTable extends Vector 
{
	////////////////////////////////////////////////
	//	Constants
	////////////////////////////////////////////////
	
	public final static String ELEM_NAME = "serviceStateTable";

	////////////////////////////////////////////////
	//	Constructor
	////////////////////////////////////////////////
	
	public ServiceStateTable() 
	{
	}
	
	////////////////////////////////////////////////
	//	Methods
	////////////////////////////////////////////////
	
	public StateVariable getStateVariable(int n)
	{
		return (StateVariable)get(n);
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy