with extra parsers in xml/parsers removed. Diverging from original v1.7 checkin in prep for merging.
46 lines
963 B
Java
46 lines
963 B
Java
/******************************************************************
|
|
*
|
|
* 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);
|
|
}
|
|
}
|
|
|