Package de.dfki.owlsmx.gui.data

Examples of de.dfki.owlsmx.gui.data.ServiceItem


        // Get a TreeSet with the services loaded from TestCollection
        Set services = new TreeSet();
        services = TestCollection.getInstance().getServices();
       
        MatchmakerInterface.getInstance().createMatchmaker();
        ServiceItem service;
        int current = 1;
        // Run through the list of loaded services and add them to the
        // Matchmaker one by one
        for(Iterator iter = services.iterator(); iter.hasNext();current++) {               
            service = (ServiceItem) iter.next();
            // Tell the world what service is load
            System.out.println("MatchmakerInterface: Adding service: " + service.getURI().toString() + ", " + current + "/" + services.size());
            // Load a service to the Matchmaker
            MatchmakerInterface.getInstance().addService(service.getURI());
        }
        System.out.println("Matchmaker: Done Adding services :)");
       
       
        /*
 
View Full Code Here


        // Get a TreeSet with the services loaded from TestCollection
        Set services = new TreeSet();
        services = TestCollection.getInstance().getServices();
       
        MatchmakerInterface.getInstance().createMatchmaker();
        ServiceItem service;
        int current = 1;
        // Run through the list of loaded services and add them to the
        // Matchmaker one by one
        for(Iterator iter = services.iterator(); iter.hasNext();current++) {               
            service = (ServiceItem) iter.next();
            // Tell the world what service is load
            System.err.println("OWLSMX.java.158: MatchmakerInterface: Adding service: " + service.getURI().toString() + ", " + current + "/" + services.size());
            // Load a service to the Matchmaker
            MatchmakerInterface.getInstance().addService(service.getURI());
        }
        System.err.println("OWLSMX.java.162: Matchmaker: Done Adding services :)");
       
       
        /*
 
View Full Code Here

TOP

Related Classes of de.dfki.owlsmx.gui.data.ServiceItem

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.