チェンジセット 30 : BH13SPARQLBuilder/src/org/biohackathon
- 更新日時:
- 2014/01/31 09:49:03 (11 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/OWLQueryBuilderImpl.java
r28 r30 483 483 } 484 484 485 public Path[] getPaths(String startClass, String endClass ) throws Exception {485 public Path[] getPaths(String startClass, String endClass, int mode, boolean countLink) throws Exception { 486 486 OWLClassGraph graph = new OWLClassGraph(startClass, endClass); 487 return graph.getPaths(this, 0);487 return graph.getPaths(this, mode, countLink); 488 488 } 489 489