差分発生行の前後
無視リスト:
更新日時:
2016/03/15 15:26:22 (9 年 前)
更新者:
nori
ログメッセージ:

SClassにendpointURI, graphURIを追加

ファイル:
1 変更

凡例:

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

    r267 r272  
    88        private int numOfInstances; 
    99        private HashSet<Label> labels; 
     10        private String endpointURI = null; 
     11        private String graphURI = null; 
    1012 
    1113        /** 
     
    1921         * @since 28.01.2014 
    2022         */ 
    21         public SClass(String classURI, Label[] labels, int numOfInstances) { 
     23        public SClass(String classURI, Label[] labels, int numOfInstances, String endpointURI, String graphURI) { 
    2224                this.classURI = classURI; 
    2325                this.numOfInstances = numOfInstances; 
    2426                setLabels(labels); 
     27                this.endpointURI = endpointURI; 
     28                this.graphURI = graphURI; 
    2529        } 
    2630 
     
    8286        } 
    8387 
     88        public final String getEndpointURI() { 
     89                return endpointURI; 
     90        } 
     91 
     92        public final void setEndpointURI(String endpointURI) { 
     93                this.endpointURI = endpointURI; 
     94        } 
     95 
     96        public final String getGraphURI() { 
     97                return graphURI; 
     98        } 
     99 
     100        public final void setGraphURI(String graphURI) { 
     101                this.graphURI = graphURI; 
     102        } 
     103 
     104         
     105         
    84106}