org.cybergarage.upnp.event.PropertyList Maven / Gradle / Ivy
/******************************************************************
*
* CyberUPnP for Java
*
* Copyright (C) Satoshi Konno 2002
*
* File: PropertyList.java
*
* Revision;
*
* 09/08/03
* - first revision.
*
******************************************************************/
package org.cybergarage.upnp.event;
import java.util.*;
public class PropertyList extends Vector
{
////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////
public final static String ELEM_NAME = "PropertyList";
////////////////////////////////////////////////
// Constructor
////////////////////////////////////////////////
public PropertyList()
{
}
////////////////////////////////////////////////
// Methods
////////////////////////////////////////////////
public Property getProperty(int n)
{
return (Property)get(n);
}
}