/** * */ package de.mpiwg.itgroup.annotations; /** * @author casties * */ public class Group extends Actor { public Group(String id) { super(); this.id = id; } public Group(String uri, String name) { super(); this.uri = uri; this.name = name; } public Group(String id, String uri, String name) { super(); this.id = id; this.uri = uri; this.name = name; } @Override public boolean isGroup() { return true; } public String getIdString() { if (id == null) { id = getIdFromUri(uri, true); } return "group:" + id; } }