チェンジセット 252 : SPARQLBuilderWWW/src/java/org
- 更新日時:
- 2015/05/15 16:30:46 (10 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
SPARQLBuilderWWW/src/java/org/biohackathon/SPARQLBuilder/OWL/OWLClassGraph.java
r251 r252 91 91 List<List<ClassLink>> paths = searchPaths(startClass, endClass); 92 92 93 NavigableSet<Path> sortedpath = new TreeSet<Path>();93 List<Path> sortedpaths = new LinkedList<Path>(); 94 94 ListIterator<List<ClassLink>> pit = paths.listIterator(); 95 95 int j = 0; … … 110 110 int rankwidth = (int) ( ( min * nsteps )/ crrpath.size() ); 111 111 path.setWidth(rankwidth); 112 sortedpath .add(path);112 sortedpaths.add(path); 113 113 j++; 114 114 } 115 115 Path[] patharray = new Path[paths.size()]; 116 Iterator<Path> pait = sortedpath.descendingIterator(); 116 Collections.sort(sortedpaths); 117 Iterator<Path> pait = sortedpaths.listIterator(); 117 118 int i = 0; 118 119 while ( pait.hasNext() ){ 119 patharray[ i] = pait.next();120 patharray[paths.size()-i-1] = pait.next(); 120 121 i++; 121 122 } … … 411 412 private boolean checkPath(String startClass, List<ClassLink> paths){ 412 413 // KOKO 413 return false;414 return true; 414 415 } 415 416 // old codes