Mercurial > hg > AnnotationManagerN4J
annotate src/main/java/de/mpiwg/itgroup/annotations/Uri.java @ 48:0e00bf8e27fb
targets and resources of Annotation object are objects now.
| author | casties |
|---|---|
| date | Wed, 26 Sep 2012 18:10:47 +0200 |
| parents | aa2bb7ac04d9 |
| children | 2b1e6df5e21a |
| rev | line source |
|---|---|
| 42 | 1 package de.mpiwg.itgroup.annotations; |
| 2 | |
| 3 /** | |
| 4 * @author casties | |
| 5 * | |
| 6 */ | |
| 7 public class Uri { | |
| 8 | |
| 9 public String uri; | |
| 10 | |
| 11 public Uri(String uri) { | |
| 12 this.uri = uri; | |
| 13 } | |
| 14 | |
| 15 public String getUri() { | |
| 16 return uri; | |
| 17 } | |
| 18 | |
| 19 public void setUri(String uri) { | |
| 20 this.uri = uri; | |
| 21 } | |
| 22 } |
