差分発生行の前後
無視リスト:
更新日時:
2015/09/14 11:20:13 (9 年 前)
更新者:
atsuko
ログメッセージ:

外部OWL読み込みに対応するよう変更

ファイル:
1 変更

凡例:

変更なし
追加
削除
  • SPARQLBuilderWWW/src/java/org/biohackathon/SPARQLBuilder/www/PLServlet.java

    r251 r256  
    8383        SClass[] classes = qpg.getClasses(null); 
    8484        Path[] paths = null; 
    85         //if ( ask == null ){ 
    86         //    paths = qpg.getPaths(st, en, false); 
    87         //}else if ( ask.equalsIgnoreCase("true")){ 
    88             paths = qpg.getPaths(st, en, true);             
    89         //}else{ 
    90         //    paths = qpg.getPaths(st, en, false);             
    91         //} 
     85        paths = qpg.getPaths(st, en, true);             
    9286             
    9387        String jsonstr = "["; 
     
    9993                continue; 
    10094            } 
    101             jsonstr += paths[i].toJSONString3(classes); 
     95            jsonstr += paths[i].toJSONString4(qpg); 
    10296        } 
    10397        jsonstr += "]"; 
    10498        // For debug 
     99        /* 
    105100        System.out.println("JSON:"); 
    106101        System.out.println(jsonstr); 
     102        */ 
    107103        out.print(jsonstr); 
    108104    }