差分発生行の前後
無視リスト:
更新日時:
2014/09/25 16:08:57 (10 年 前)
更新者:
atsuko
ログメッセージ:

Path ランキング機能追加

ファイル:
1 変更

凡例:

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

    r133 r161  
    1414 * @version 29.01.2014 
    1515 */ 
    16 public class Path { 
     16public class Path implements Comparable<Path>{ 
    1717 
    1818        /** 
     
    112112        } 
    113113 
     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 
    114120}