Package org.cybergarage.upnp.xml

Examples of org.cybergarage.upnp.xml.StateVariableData


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

  public StateVariableData getStateVariableData ()
  {
    Node node = getStateVariableNode();
    StateVariableData userData = (StateVariableData)node.getUserData();
    if (userData == null) {
      userData = new StateVariableData();
      node.setUserData(userData);
      userData.setNode(node);
    }
    return userData;
  }
View Full Code Here

TOP

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

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.