]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc/src/main/java/org/argeo/slc/core/structure/tree/TreeSElement.java
Introduce end to end testing with logging of results
[gpl/argeo-slc.git] / org.argeo.slc / src / main / java / org / argeo / slc / core / structure / tree / TreeSElement.java
diff --git a/org.argeo.slc/src/main/java/org/argeo/slc/core/structure/tree/TreeSElement.java b/org.argeo.slc/src/main/java/org/argeo/slc/core/structure/tree/TreeSElement.java
deleted file mode 100644 (file)
index aa296c5..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-package org.argeo.slc.core.structure.tree;\r
-\r
-import org.argeo.slc.core.structure.StructureElement;\r
-\r
-/**\r
- * Implementation of <code>StructureElement</code> for tree based registries,\r
- * using <code>TreeSPath</code>\r
- * \r
- * @see TreeSPath\r
- */\r
-public class TreeSElement implements StructureElement {\r
-       private String description;\r
-\r
-       public TreeSElement(String description){\r
-               this.description = description;\r
-       }\r
-       \r
-       public TreeSElement(String description, String defaultDescription){\r
-               this(description!=null?description:defaultDescription);\r
-       }\r
-       \r
-       public String getDescription() {\r
-               return description;\r
-       }\r
-\r
-       public void setDescription(String description) {\r
-               this.description = description;\r
-       }\r
-\r
-}\r