Package owlsmx.data

Examples of owlsmx.data.InputServiceContainer


     * @throws MatchingException  If something else goes wrong
     */
    protected Map getInputCandidates(Vector inConcepts) throws  URISyntaxException, ConceptNotFoundException {
        if (inConcepts.size()<=0)
            return registry.getAllServicesWithoutInput();       
        InputServiceContainer inputs = new InputServiceContainer();
        SortedSet sort;
        for (int i = 0; i<inConcepts.size();i++) {
            sort = getServicesForInputConcept(((URI) inConcepts.get(i)).toString() );
            inputs.addServices(sort);
        }
        System.out.println("Input candidates: " + inputs.getServices().values().toString());
        return addEmptyInputs(inputs.getServices());
    }
View Full Code Here

TOP

Related Classes of owlsmx.data.InputServiceContainer

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.