Browse Source

label description is not (no longer?) optional

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275408 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 21 years ago
parent
commit
7c6f6591f6
2 changed files with 6 additions and 6 deletions
  1. +5
    -5
      docs/manual/OptionalTasks/starteam.html
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamLabel.java

+ 5
- 5
docs/manual/OptionalTasks/starteam.html View File

@@ -564,6 +564,11 @@ See also <A href="#common-params">the required common StarTeam parameters</A>.<b
<td valign="top">The name to be given to the label</td>
<td align="center" valign="top">yes</td>
</tr>
<tr>
<td valign="top">description</td>
<td valign="top">A description of the label to be stored in the StarTeam project.</td>
<td align="center" valign="top">yes</td>
</tr>
<tr>
<td valign="top">revisionlabel</td>
<td valign="top">Yes means that the label attribute is to be saved as a &quot;revision label&quot;. No (default) means that it will be saved as a &quot;view label&quot;</td>
@@ -583,11 +588,6 @@ See also <A href="#common-params">the required common StarTeam parameters</A>.<b
<td valign="top">The timestamp of the build that will be stored with the label. Must be formatted <code>yyyyMMddHHmmss</code></td>
<td align="center" valign="top">no</td>
</tr>
<tr>
<td valign="top">description</td>
<td valign="top">A description of the label to be stored in the StarTeam project.</td>
<td align="center" valign="top">no</td>
</tr>
</table>

<h3>Examples</h3>


+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamLabel.java View File

@@ -123,7 +123,7 @@ public class StarTeamLabel extends StarTeamTask {
}

/**
* Optional description of the label to be stored in the StarTeam project.
* Description of the label to be stored in the StarTeam project.
*/
public void setDescription(String description) {
this.description = description;


Loading…
Cancel
Save