]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/model/GroupBaseElem.java
Clarify SLC project structure.
[gpl/argeo-slc.git] / org.argeo.slc.client.ui.dist / src / org / argeo / slc / client / ui / dist / model / GroupBaseElem.java
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 (file)
index 2b9a8fe..0000000
+++ /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