|
|
@@ -38,17 +38,6 @@ import org.apache.tools.ant.util.IdentityStack; |
|
|
* |
|
|
* |
|
|
*/ |
|
|
*/ |
|
|
public abstract class DataType extends ProjectComponent implements Cloneable { |
|
|
public abstract class DataType extends ProjectComponent implements Cloneable { |
|
|
// CheckStyle:VisibilityModifier OFF - bc |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* The description the user has set. |
|
|
|
|
|
* |
|
|
|
|
|
* @deprecated since 1.7. |
|
|
|
|
|
* The user should not be directly referencing |
|
|
|
|
|
* variable. Please use {@link #setDescription} or |
|
|
|
|
|
* {@link #getDescription} instead. |
|
|
|
|
|
*/ |
|
|
|
|
|
protected String description; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Value to the refid attribute. |
|
|
* Value to the refid attribute. |
|
|
@@ -74,25 +63,6 @@ public abstract class DataType extends ProjectComponent implements Cloneable { |
|
|
*/ |
|
|
*/ |
|
|
protected boolean checked = true; |
|
|
protected boolean checked = true; |
|
|
|
|
|
|
|
|
// CheckStyle:VisibilityModifier ON |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Sets a description of the current data type. It will be useful |
|
|
|
|
|
* in commenting what we are doing. |
|
|
|
|
|
* @param desc the desciption |
|
|
|
|
|
*/ |
|
|
|
|
|
public void setDescription(final String desc) { |
|
|
|
|
|
description = desc; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Return the description for the current data type. |
|
|
|
|
|
* @return the description |
|
|
|
|
|
*/ |
|
|
|
|
|
public String getDescription() { |
|
|
|
|
|
return description; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Has the refid attribute of this element been set? |
|
|
* Has the refid attribute of this element been set? |
|
|
* @return true if the refid attribute has been set |
|
|
* @return true if the refid attribute has been set |
|
|
|