org.cybergarage.upnp.ServiceStateTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of upnp-stack Show documentation
Show all versions of upnp-stack Show documentation
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);
}
}