- 更新日時:
- 2014/09/25 16:08:57 (10 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
SPARQLBuilderWWW/src/java/org/biohackathon/SPARQLBuilder/OWL/Path.java
r133 r161 14 14 * @version 29.01.2014 15 15 */ 16 public class Path {16 public class Path implements Comparable<Path>{ 17 17 18 18 /** … … 112 112 } 113 113 114 @Override 115 public int compareTo(Path path) { 116 return this.width - path.getWidth(); 117 //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. 118 } 119 114 120 }