org.cybergarage.upnp.Action.getServiceNode()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.5k)|赞(0)|评价(0)|浏览(102)

本文整理了Java中org.cybergarage.upnp.Action.getServiceNode()方法的一些代码示例,展示了Action.getServiceNode()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Action.getServiceNode()方法的具体详情如下:
包路径:org.cybergarage.upnp.Action
类名称:Action
方法名:getServiceNode

Action.getServiceNode介绍

暂无

代码示例

代码示例来源:origin: i2p/i2p.i2p

public Action(Action action)
{
  this.serviceNode = action.getServiceNode();
  this.actionNode = action.getActionNode();
}

代码示例来源:origin: i2p/i2p.i2p

public Service getService()
{
  return new Service(getServiceNode());
}

代码示例来源:origin: i2p/i2p.i2p

public ArgumentList getArgumentList()
{
  ArgumentList argumentList = new ArgumentList();
  Node argumentListNode = getActionNode().getNode(ArgumentList.ELEM_NAME);
  if (argumentListNode == null)
    return argumentList;
  int nodeCnt = argumentListNode.getNNodes();
  for (int n=0; n<nodeCnt; n++) {
    Node node = argumentListNode.getNode(n);
    if (Argument.isArgumentNode(node) == false)
      continue;
    Argument argument = new Argument(getServiceNode(), node);
    argumentList.add(argument);
  } 
  return argumentList;
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public Action(Action action)
{
  this.serviceNode = action.getServiceNode();
  this.actionNode = action.getActionNode();
}

代码示例来源:origin: geniusgithub/MediaPlayer

public Action(Action action)
{
  this.serviceNode = action.getServiceNode();
  this.actionNode = action.getActionNode();
}

代码示例来源:origin: geniusgithub/MediaPlayer

public Service getService()
{
  return new Service(getServiceNode());
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public Service getService()
{
  return new Service(getServiceNode());
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public ArgumentList getArgumentList()
{
  ArgumentList argumentList = new ArgumentList();
  Node argumentListNode = getActionNode().getNode(ArgumentList.ELEM_NAME);
  if (argumentListNode == null)
    return argumentList;
  int nodeCnt = argumentListNode.getNNodes();
  for (int n=0; n<nodeCnt; n++) {
    Node node = argumentListNode.getNode(n);
    if (Argument.isArgumentNode(node) == false)
      continue;
    Argument argument = new Argument(getServiceNode(), node);
    argumentList.add(argument);
  } 
  return argumentList;
}

代码示例来源:origin: geniusgithub/MediaPlayer

public ArgumentList getArgumentList()
{
  ArgumentList argumentList = new ArgumentList();
  Node argumentListNode = getActionNode().getNode(ArgumentList.ELEM_NAME);
  if (argumentListNode == null)
    return argumentList;
  int nodeCnt = argumentListNode.getNNodes();
  for (int n=0; n<nodeCnt; n++) {
    Node node = argumentListNode.getNode(n);
    if (Argument.isArgumentNode(node) == false)
      continue;
    Argument argument = new Argument(getServiceNode(), node);
    argumentList.add(argument);
  } 
  return argumentList;
}

相关文章