Package org.cybergarage.upnp.xml

Examples of org.cybergarage.upnp.xml.ActionData


  ////////////////////////////////////////////////

  private ActionData getActionData()
  {
    Node node = getActionNode();
    ActionData userData = (ActionData)node.getUserData();
    if (userData == null) {
      userData = new ActionData();
      node.setUserData(userData);
      userData.setNode(node);
    }
    return userData;
  }
View Full Code Here

TOP

Related Classes of org.cybergarage.upnp.xml.ActionData

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.