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