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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
42
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
1 package de.mpiwg.itgroup.annotations;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
2
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
3 /**
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
4 * @author casties
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
5 *
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
6 */
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
7 public class Uri {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
8
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
9 public String uri;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
10
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
11 public Uri(String uri) {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
12 this.uri = uri;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
13 }
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
14
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
15 public String getUri() {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
16 return uri;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
17 }
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
18
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
19 public void setUri(String uri) {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
20 this.uri = uri;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
21 }
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
22 }