- 更新日時:
- 2015/09/14 11:20:13 (9 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
SPARQLBuilderWWW/src/java/org/biohackathon/SPARQLBuilder/www/PLServlet.java
r251 r256 83 83 SClass[] classes = qpg.getClasses(null); 84 84 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); 92 86 93 87 String jsonstr = "["; … … 99 93 continue; 100 94 } 101 jsonstr += paths[i].toJSONString 3(classes);95 jsonstr += paths[i].toJSONString4(qpg); 102 96 } 103 97 jsonstr += "]"; 104 98 // For debug 99 /* 105 100 System.out.println("JSON:"); 106 101 System.out.println(jsonstr); 102 */ 107 103 out.print(jsonstr); 108 104 }