From 39a371ce20320fafff5da244a2aa4fc4aecfa2ea Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Fri, 1 Aug 2003 10:22:30 +0000 Subject: [PATCH] style git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275006 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/Task.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/org/apache/tools/ant/Task.java b/src/main/org/apache/tools/ant/Task.java index 4216e7676..8f38290ca 100644 --- a/src/main/org/apache/tools/ant/Task.java +++ b/src/main/org/apache/tools/ant/Task.java @@ -488,10 +488,20 @@ public abstract class Task extends ProjectComponent { } } + /** + * Return the type of task + * + * @return the type of task + */ protected String getTaskType() { return taskType; } + /** + * Return the runtime configurable structure for this task + * + * @return the runtime structure for this task + */ protected RuntimeConfigurable getWrapper() { return wrapper; }