diff --git a/docs/manual/CoreTasks/macrodef.html b/docs/manual/CoreTasks/macrodef.html index 480527ce6..8d65373ff 100644 --- a/docs/manual/CoreTasks/macrodef.html +++ b/docs/manual/CoreTasks/macrodef.html @@ -84,6 +84,13 @@
@@ -112,6 +119,14 @@
null
if
+ * no description is available.
+ */
+ public String getDescription() {
+ return description;
+ }
+
/**
* equality method
*
@@ -367,6 +383,8 @@ public class MacroDef extends AntlibDefinition {
public static class TemplateElement {
private String name;
private boolean optional = false;
+ private String description;
+
/**
* The name of the element.
*
@@ -404,6 +422,21 @@ public class MacroDef extends AntlibDefinition {
return optional;
}
+ /**
+ * @param desc Description of the element.
+ */
+ public void setDescription(String desc) {
+ description = desc;
+ }
+
+ /**
+ * @return the description of the element, or null
if
+ * no description is available.
+ */
+ public String getDescription() {
+ return description;
+ }
+
/**
* equality method
*