- 更新日時:
- 2016/03/15 15:26:22 (9 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
SPARQLBuilderWWW2016/src/java/org/biohackathon/SPARQLBuilder/OWL/SClass.java
r267 r272 8 8 private int numOfInstances; 9 9 private HashSet<Label> labels; 10 private String endpointURI = null; 11 private String graphURI = null; 10 12 11 13 /** … … 19 21 * @since 28.01.2014 20 22 */ 21 public SClass(String classURI, Label[] labels, int numOfInstances ) {23 public SClass(String classURI, Label[] labels, int numOfInstances, String endpointURI, String graphURI) { 22 24 this.classURI = classURI; 23 25 this.numOfInstances = numOfInstances; 24 26 setLabels(labels); 27 this.endpointURI = endpointURI; 28 this.graphURI = graphURI; 25 29 } 26 30 … … 82 86 } 83 87 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 84 106 }