--- /dev/null
+package net.sourceforge.phpeclipse.phpeditor.php;
+
+/**
+ * @author choochter
+ */
+public abstract class PHPElement {
+
+ private String ElementName;
+ private String ElementDescription;
+
+ //Setters
+ public final void setName(String ElementName)
+ { this.ElementName = ElementName; }
+ public final void setDescription(String ElementDescription)
+ { this.ElementDescription = ElementDescription; }
+
+ //Getters
+ public final String getName() { return ElementName; }
+ public final String getDescription() { return ElementDescription; }
+
+ public PHPElement(){}
+ public PHPElement(String Name, String Description){
+ setName(Name);
+ if ((Description == null) || (Description.equals("")))
+ {
+ setDescription(Name +" - ");
+ }
+ else {
+ setDescription(Description);
+ }
+ }
+
+}