- 更新日時:
- 2015/03/24 18:18:00 (10 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
SPARQLBuilderWWW/src/java/org/biohackathon/SPARQLBuilder/www/PLServlet.java
r221 r248 74 74 String st = request.getParameter("startclass"); 75 75 String en = request.getParameter("endclass"); 76 String ask = request.getParameter("ask"); 76 77 77 78 HttpSession session = request.getSession(); … … 81 82 } 82 83 SClass[] classes = qpg.getClasses(null); 83 Path[] paths = qpg.getPaths(st, en, true); 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 } 92 84 93 String jsonstr = "["; 85 94 for(int i = 0; i< paths.length; i++){