Package org.cybergarage.upnp

Examples of org.cybergarage.upnp.ActionList


    actions = new Hashtable();
    stateVariables=new Hashtable();
    /*
     * action
     */
    ActionList actionlist = service.getActionList();
    for (int i = 0; i < actionlist.size(); i++) {
      Action act = actionlist.getAction(i);
      actions.put(act.getName(), new UPnPActionImpl(act,this));
    }
    /*StateVariable*/
    ServiceStateTable stateTable=service.getServiceStateTable();
    for(int i=0;i<stateTable.size();i++){
View Full Code Here

TOP

Related Classes of org.cybergarage.upnp.ActionList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.