Browse Source

style

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275006 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 22 years ago
parent
commit
39a371ce20
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      src/main/org/apache/tools/ant/Task.java

+ 10
- 0
src/main/org/apache/tools/ant/Task.java View File

@@ -488,10 +488,20 @@ public abstract class Task extends ProjectComponent {
} }
} }


/**
* Return the type of task
*
* @return the type of task
*/
protected String getTaskType() { protected String getTaskType() {
return taskType; return taskType;
} }


/**
* Return the runtime configurable structure for this task
*
* @return the runtime structure for this task
*/
protected RuntimeConfigurable getWrapper() { protected RuntimeConfigurable getWrapper() {
return wrapper; return wrapper;
} }


Loading…
Cancel
Save