comparison src/main/java/de/mpiwg/itgroup/annotations/Group.java @ 15:58357a4b86de

ASSIGNED - # 249: Annotations shared in groups https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-software/ticket/249
author casties
date Tue, 28 Aug 2012 20:23:12 +0200
parents 5928c5d9aae8
children 2b1e6df5e21a
comparison
equal deleted inserted replaced
14:629e15b345aa 15:58357a4b86de
18 super(); 18 super();
19 this.uri = uri; 19 this.uri = uri;
20 this.name = name; 20 this.name = name;
21 } 21 }
22 22
23 public Group(String id, String uri, String name) {
24 super();
25 this.id = id;
26 this.uri = uri;
27 this.name = name;
28 }
29
30
23 @Override 31 @Override
24 public boolean isGroup() { 32 public boolean isGroup() {
25 return true; 33 return true;
26 } 34 }
27 35