annotate src/main/java/de/mpiwg/itgroup/annotations/Uri.java @ 70:2b1e6df5e21a

added lgpl_v3 license information.
author casties
date Thu, 06 Mar 2014 15:09:04 +0100
parents aa2bb7ac04d9
children
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
70
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
3 /*
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
4 * #%L
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
5 * AnnotationManager
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
6 * %%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
7 * Copyright (C) 2012 - 2014 MPIWG Berlin
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
8 * %%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
9 * This program is free software: you can redistribute it and/or modify
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
10 * it under the terms of the GNU Lesser General Public License as
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
11 * published by the Free Software Foundation, either version 3 of the
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
12 * License, or (at your option) any later version.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
13 *
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
14 * This program is distributed in the hope that it will be useful,
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
17 * GNU General Lesser Public License for more details.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
18 *
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
19 * You should have received a copy of the GNU General Lesser Public
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
20 * License along with this program. If not, see
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
21 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
22 * #L%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
23 */
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 42
diff changeset
24
42
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
25 /**
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
26 * @author casties
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
27 *
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
28 */
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
29 public class Uri {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
30
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
31 public String uri;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
32
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
33 public Uri(String uri) {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
34 this.uri = uri;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
35 }
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
36
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
37 public String getUri() {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
38 return uri;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
39 }
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
40
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
41 public void setUri(String uri) {
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
42 this.uri = uri;
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
43 }
aa2bb7ac04d9 more work on resources and targets.
casties
parents:
diff changeset
44 }