You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.html 1.8 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!--
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. -->
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Language" content="en-us">
  18. <link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
  19. <title>Common</title>
  20. </head>
  21. <body>
  22. <h2><a name="javac">Common Attributes of all Tasks</a></h2>
  23. <p>All tasks share the following attributes:</p>
  24. <table border="1" cellpadding="2" cellspacing="0">
  25. <tr>
  26. <td valign="top"><b>Attribute</b></td>
  27. <td valign="top"><b>Description</b></td>
  28. <td align="center" valign="top"><b>Required</b></td>
  29. </tr>
  30. <tr>
  31. <td valign="top">id</td>
  32. <td valign="top">Unique identifier for this task instance, can be
  33. used to reference this task in scripts.</td>
  34. <td valign="top">No</td>
  35. </tr>
  36. <tr>
  37. <td valign="top">taskname</td>
  38. <td valign="top">A different name for this task instance - will
  39. show up in the logging output.</td>
  40. <td valign="top">No</td>
  41. </tr>
  42. <tr>
  43. <td valign="top">description</td>
  44. <td valign="top">Room for your comments</td>
  45. <td valign="top">No</td>
  46. </tr>
  47. </table>
  48. </body>
  49. </html>