Search in sources :

Example 1 with ActionData

use of org.cybergarage.upnp.xml.ActionData in project i2p.i2p by i2p.

the class Action method getActionData.

// //////////////////////////////////////////////
// UserData
// //////////////////////////////////////////////
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;
}
Also used : Node(org.cybergarage.xml.Node) ActionData(org.cybergarage.upnp.xml.ActionData)

Aggregations

ActionData (org.cybergarage.upnp.xml.ActionData)1 Node (org.cybergarage.xml.Node)1