| 1 | /* |
|---|
| 2 | * To change this license header, choose License Headers in Project Properties. |
|---|
| 3 | * To change this template file, choose Tools | Templates |
|---|
| 4 | * and open the template in the editor. |
|---|
| 5 | */ |
|---|
| 6 | |
|---|
| 7 | package org.biohackathon.SPARQLBuilder.OWL; |
|---|
| 8 | |
|---|
| 9 | /** |
|---|
| 10 | * |
|---|
| 11 | * @author atsuko |
|---|
| 12 | */ |
|---|
| 13 | public class QueryPathGenerator { |
|---|
| 14 | private String sparqlEndpoint; |
|---|
| 15 | private RDFSchemaAnalyzer analyzer; |
|---|
| 16 | |
|---|
| 17 | public void setSPARQLendpoint(String sparqlEndpoint){ |
|---|
| 18 | this.sparqlEndpoint = sparqlEndpoint; |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | public SClass[] getClasses(){ |
|---|
| 22 | // KOKO |
|---|
| 23 | return new SClass[10]; |
|---|
| 24 | } |
|---|
| 25 | |
|---|
| 26 | public Path[] getPaths(String startClass, String endClass, boolean countLink){ |
|---|
| 27 | // KOKO |
|---|
| 28 | return new Path[10]; |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | } |
|---|