X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.client.ui.dist%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Fdist%2Fmodel%2FGroupBaseElem.java;fp=org.argeo.slc.client.ui.dist%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Fdist%2Fmodel%2FGroupBaseElem.java;h=0000000000000000000000000000000000000000;hb=ecc22e604e47533c79de9cecdcdeacbc752cbff1;hp=2b9a8fe12cfec0e2c97d6edd3954aa88d9867bf1;hpb=e07ded4632e53f8b8869763bc1f1f4091361e76e;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/model/GroupBaseElem.java b/org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/model/GroupBaseElem.java deleted file mode 100644 index 2b9a8fe12..000000000 --- a/org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/model/GroupBaseElem.java +++ /dev/null @@ -1,41 +0,0 @@ -package org.argeo.slc.client.ui.dist.model; - -/** - * Abstract a node of type slc:groupBase that gathers a set of artifacts that - * have the same group ID - */ -public class GroupBaseElem extends DistParentElem { - // private WorkspaceElem wkspElem; - private String groupId; - - public GroupBaseElem(WorkspaceElem wkspElem, String groupId) { - super(groupId, wkspElem.inHome(), wkspElem.isReadOnly()); - - setParent(wkspElem); - // this.wkspElem = wkspElem; - this.groupId = groupId; - } - - public Object[] getChildren() { - return null; - } - - public String getLabel() { - return groupId; - } - - // public String toString() { - // return getLabel(); - // } - - // public void dispose() { - // } - - public WorkspaceElem getWorkspaceElem() { - return (WorkspaceElem) getParent(); - } - - public String getGroupId() { - return getName(); - } -} \ No newline at end of file