- 更新日時:
- 2014/06/18 15:15:37 (10 年 前)
- ファイル:
-
- 1 移動
凡例:
- 変更なし
- 追加
- 削除
-
BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/EndpointAnalyzer.java
r65 r80 23 23 * @version 29.01.2014 24 24 */ 25 public class OWLQueryBuilderImpl implements OWLQueryBuilder {25 public class EndpointAnalyzer implements RDFSchemaAnalyzer { 26 26 27 27 // private Model model = null; … … 36 36 * @since 28.01.2014 37 37 */ 38 public OWLQueryBuilderImpl(String endpointURI) {38 public EndpointAnalyzer(String endpointURI) { 39 39 this.endpointURI = endpointURI; 40 40 } … … 60 60 // keyword = null; 61 61 62 OWLQueryBuilder builder = new OWLQueryBuilderImpl(sparqlEndpoint);62 EndpointAnalyzer builder = new EndpointAnalyzer(sparqlEndpoint); 63 63 64 64 SClass[] clz = builder.getOWLClasses(null, keyword, "en", false); … … 705 705 } 706 706 707 public Path[] getPaths(String startClass, String endClass, int mode, 707 /* 708 public Path[] getPaths(String startClass, String endClass, int mode, 708 709 boolean countLinks) throws Exception { 709 710 OWLClassGraph graph = new OWLClassGraph(startClass, endClass); … … 715 716 return null; 716 717 } 718 */ 717 719 718 720 /*