Package org.apache.felix.upnp.basedriver.importer.core.upnp

Examples of org.apache.felix.upnp.basedriver.importer.core.upnp.UPnPServiceImpl


    String[] servicesIDProperty = new String[serviceList.size()];
    String[] servicesTypeProperty;
    HashSet serTypeSet = new HashSet();
    for (int i = 0; i < serviceList.size(); i++) {
      Service service = serviceList.getService(i);
      UPnPServiceImpl serviceImpl = new UPnPServiceImpl(service);
      services.put(service.getServiceID(), serviceImpl);
      servicesIDProperty[i] = serviceImpl.getId();
      serTypeSet.add(serviceImpl.getType());
    }
    servicesTypeProperty = new String[serTypeSet.size()];
    Iterator iter = serTypeSet.iterator();
    int i = 0;
    while (iter.hasNext()) {
View Full Code Here

TOP

Related Classes of org.apache.felix.upnp.basedriver.importer.core.upnp.UPnPServiceImpl

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.