Package nl.vu.few.anytimereasoning.workbench.measures.utils

Examples of nl.vu.few.anytimereasoning.workbench.measures.utils.InputOntology


        line = line.trim();
        if ( (line.length() > 0)&&(line.charAt(0) != '#') ){
          String[] parts = line.split(" ",2);
          String uri = parts[0].trim();
          String name = parts[1].trim();
          objects.add(new InputOntology(new URI(uri),name));
        }
      }
      reader.close();
      return objects;
    }
View Full Code Here

TOP

Related Classes of nl.vu.few.anytimereasoning.workbench.measures.utils.InputOntology

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.