use of org.cybergarage.upnp.ActionList in project i2p.i2p by i2p.
the class UPnP method listActions.
/**
* debug only
*/
private static void listActions(Service service, StringBuilder sb) {
ActionList al = service.getActionList();
sb.append("<ul>");
for (int i = 0; i < al.size(); i++) {
Action action = al.getAction(i);
if (action == null)
continue;
sb.append("<li>").append(DataHelper.escapeHTML(action.getName()));
listActionsArguments(action, sb);
sb.append("</li>");
}
sb.append("</ul>");
}
Aggregations