|
|
@@ -26,11 +26,6 @@ import org.apache.tools.ant.ProjectComponent; |
|
|
|
public abstract class DataType |
|
|
|
extends ProjectComponent |
|
|
|
{ |
|
|
|
/** |
|
|
|
* The descriptin the user has set. |
|
|
|
*/ |
|
|
|
protected String description; |
|
|
|
|
|
|
|
/** |
|
|
|
* Value to the refid attribute. |
|
|
|
*/ |
|
|
@@ -45,17 +40,6 @@ public abstract class DataType |
|
|
|
*/ |
|
|
|
protected boolean checked = true; |
|
|
|
|
|
|
|
/** |
|
|
|
* Sets a description of the current data type. It will be useful in |
|
|
|
* commenting what we are doing. |
|
|
|
* |
|
|
|
* @param desc The new Description value |
|
|
|
*/ |
|
|
|
public void setDescription( String desc ) |
|
|
|
{ |
|
|
|
description = desc; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* Set the value of the refid attribute. <p> |
|
|
|
* |
|
|
@@ -72,16 +56,6 @@ public abstract class DataType |
|
|
|
checked = false; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* Return the description for the current data type. |
|
|
|
* |
|
|
|
* @return The Description value |
|
|
|
*/ |
|
|
|
public String getDescription() |
|
|
|
{ |
|
|
|
return description; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* Has the refid attribute of this element been set? |
|
|
|
* |
|
|
|