Index: /BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/QueryPathGenerator.java
===================================================================
--- /BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/QueryPathGenerator.java (revision 83)
+++ /BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/QueryPathGenerator.java (revision 83)
@@ -0,0 +1,31 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+
+package org.biohackathon.SPARQLBuilder.OWL;
+
+/**
+ *
+ * @author atsuko
+ */
+public class QueryPathGenerator {
+    private String sparqlEndpoint;
+    private RDFSchemaAnalyzer analyzer;
+    
+    public void setSPARQLendpoint(String sparqlEndpoint){
+        this.sparqlEndpoint = sparqlEndpoint;
+    }
+    
+    public SClass[] getClasses(){
+        // KOKO
+        return new SClass[10];
+    }
+    
+    public Path[] getPaths(String startClass, String endClass, boolean countLink){
+        // KOKO
+        return new Path[10];
+    }
+    
+}
