Mercurial > hg > AnnotationManagerN4J
comparison src/main/java/de/mpiwg/itgroup/annotations/Annotation.java @ 5:bbf0cc5bee29
version 0.2 really works now
| author | casties |
|---|---|
| date | Tue, 03 Jul 2012 21:23:17 +0200 |
| parents | 3599b29c393f |
| children | c3cc6a41dd1c |
comparison
equal
deleted
inserted
replaced
| 4:3599b29c393f | 5:bbf0cc5bee29 |
|---|---|
| 48 | 48 |
| 49 /** | 49 /** |
| 50 * The URI of the creator of this annotation. | 50 * The URI of the creator of this annotation. |
| 51 */ | 51 */ |
| 52 protected String creatorUri; | 52 protected String creatorUri; |
| 53 | |
| 54 /** | |
| 55 * The full name of the creator of this annotation. | |
| 56 */ | |
| 57 protected String creatorName; | |
| 53 | 58 |
| 54 /** | 59 /** |
| 55 * The creation date of this annotation. | 60 * The creation date of this annotation. |
| 56 */ | 61 */ |
| 57 protected String created; | 62 protected String created; |
| 153 public void setCreatorUri(String creatorUri) { | 158 public void setCreatorUri(String creatorUri) { |
| 154 this.creatorUri = creatorUri; | 159 this.creatorUri = creatorUri; |
| 155 } | 160 } |
| 156 | 161 |
| 157 /** | 162 /** |
| 163 * @return the creatorName | |
| 164 */ | |
| 165 public String getCreatorName() { | |
| 166 return creatorName; | |
| 167 } | |
| 168 | |
| 169 /** | |
| 170 * @param creatorName the creatorName to set | |
| 171 */ | |
| 172 public void setCreatorName(String creatorName) { | |
| 173 this.creatorName = creatorName; | |
| 174 } | |
| 175 | |
| 176 /** | |
| 158 * @return the created | 177 * @return the created |
| 159 */ | 178 */ |
| 160 public String getCreated() { | 179 public String getCreated() { |
| 161 return created; | 180 return created; |
| 162 } | 181 } |
