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.

base_task_classes.html 1.8 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <link rel="stylesheet" type="text/css" href="stylesheets/style.css">
  5. <title>Tasks Designed for Extension</title>
  6. </head>
  7. <body>
  8. <h1>Tasks Designed for Extension</h1>
  9. <p>These classes are designed to be extended. Always start here when writing your own task.</p>
  10. <p><strong>The links will not work in the online version of this document.</strong></p>
  11. <table border="1">
  12. <thead>
  13. <tr>
  14. <th>
  15. Class
  16. </th>
  17. <th>
  18. Description
  19. </th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <tr>
  24. <td>
  25. <a href="api/org/apache/tools/ant/Task.html">Task</a>
  26. </td>
  27. <td>
  28. Base class for all tasks.
  29. </td>
  30. </tr>
  31. <tr>
  32. <td>
  33. <a href="api/org/apache/tools/ant/taskdefs/AbstractCvsTask.html">AbstractCvsTask</a>
  34. </td>
  35. <td>
  36. Another task can extend this with some customized output processing
  37. </td>
  38. </tr>
  39. <tr>
  40. <td>
  41. <a href="api/org/apache/tools/ant/taskdefs/JDBCTask.html">JDBCTask</a>
  42. </td>
  43. <td>
  44. Handles JDBC configuration needed by SQL type tasks.
  45. </td>
  46. </tr>
  47. <tr>
  48. <td>
  49. <a href="api/org/apache/tools/ant/taskdefs/MatchingTask.html">MatchingTask</a>
  50. </td>
  51. <td>
  52. This is an abstract task that should be used by all those tasks that require to include or exclude files based on pattern matching.
  53. </td>
  54. </tr>
  55. <tr>
  56. <td>
  57. <a href="api/org/apache/tools/ant/taskdefs/Pack.html">Pack</a>
  58. </td>
  59. <td>
  60. Abstract Base class for pack tasks.
  61. </td>
  62. </tr>
  63. <tr>
  64. <td>
  65. <a href="api/org/apache/tools/ant/taskdefs/Unpack.html">Unpack</a>
  66. </td>
  67. <td>
  68. Abstract Base class for unpack tasks.
  69. </td>
  70. </tr>
  71. <tr>
  72. <td>
  73. <a href="api/org/apache/tools/ant/dispatch/DispatchTask.html">DispatchTask</a>
  74. </td>
  75. <td>
  76. Abstract Base class for tasks that may have multiple actions.
  77. </td>
  78. </tr>
  79. </tbody>
  80. </table>
  81. <hr>
  82. <p align="center">Copyright &copy; 2001-2005 The Apache Software Foundation. All rights
  83. Reserved.</p>
  84. </body>
  85. </html>