チェンジセット 30 : BH13SPARQLBuilder

差分発生行の前後
無視リスト:
更新日時:
2014/01/31 09:49:03 (11 年 前)
更新者:
atsuko
ログメッセージ:

getPath の引数変更

ファイル:
1 変更

凡例:

変更なし
追加
削除
  • BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/OWLQueryBuilderImpl.java

    r28 r30  
    483483        } 
    484484 
    485         public Path[] getPaths(String startClass, String endClass) throws Exception { 
     485        public Path[] getPaths(String startClass, String endClass, int mode, boolean countLink) throws Exception { 
    486486                OWLClassGraph graph = new OWLClassGraph(startClass, endClass); 
    487                 return graph.getPaths(this, 0); 
     487                return graph.getPaths(this, mode, countLink); 
    488488        } 
    489489