Package org.cybergarage.upnp

Examples of org.cybergarage.upnp.IconList


    /* UDN */
    properties.put(UPnPDevice.UDN, dev.getUDN());
    /* UPC */
    properties.put(UPnPDevice.UPC, dev.getUPC());

    IconList iconsList = dev.getIconList();
    if (iconsList.size() != 0) {
      for (int i = 0; i < iconsList.size(); i++) {
        UPnPIcon icon = new UPnPIconImpl(iconsList.getIcon(i),dev);
        icons.add(icon);
      }
    }
    /*
     * service of this device
View Full Code Here

TOP

Related Classes of org.cybergarage.upnp.IconList

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.