annotate src/main/java/de/mpiwg/itgroup/annotations/Target.java @ 42:aa2bb7ac04d9

more work on resources and targets.
author casties
date Wed, 26 Sep 2012 16:12:46 +0200
parents
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 /**
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 package de.mpiwg.itgroup.annotations;
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 * @author casties
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
8 *
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
9 */
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
10 public class Target extends Uri {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
11
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
12 /**
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
13 * @param uri
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 Target(String uri) {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
16 super(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 }