From 5d26c58ca06291641603a5ad97c64687cfa7ca96 Mon Sep 17 00:00:00 2001 From: Antoine Levy-Lambert Date: Fri, 13 Aug 2004 09:27:01 +0000 Subject: [PATCH] Add @since tags to methods introduced in Ant 1.6.2 PR: 30276 Submitted by: Jesse Glick git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276779 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/Target.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/org/apache/tools/ant/Target.java b/src/main/org/apache/tools/ant/Target.java index 9ba19b9dd..f84cc9fb8 100644 --- a/src/main/org/apache/tools/ant/Target.java +++ b/src/main/org/apache/tools/ant/Target.java @@ -80,6 +80,7 @@ public class Target implements TaskContainer { * Sets the location of this target's definition. * * @param location Location + * @since 1.6.2 */ public void setLocation(Location location) { this.location = location; @@ -89,6 +90,7 @@ public class Target implements TaskContainer { * Get the location of this target's definition. * * @return Location + * @since 1.6.2 */ public Location getLocation() { return location; @@ -247,6 +249,7 @@ public class Target implements TaskContainer { * * @return the "if" property condition or null if no * "if" condition had been defined. + * @since 1.6.2 */ public String getIf() { return ("".equals(ifCondition) ? null : ifCondition); @@ -274,6 +277,7 @@ public class Target implements TaskContainer { * * @return the "unless" property condition or null * if no "unless" condition had been defined. + * @since 1.6.2 */ public String getUnless() { return ("".equals(unlessCondition) ? null : unlessCondition);