antoine 2004/08/13 02:28:47 Modified: src/main/org/apache/tools/ant Tag: ANT_16_BRANCH Target.java Log: Merge from HEAD Add @since tags to methods introduced in ant 1.6.2 PR: 30276 Submitted by: Jesse Glick Revision Changes Path No revision No revision 1.46.2.8 +4 -0 ant/src/main/org/apache/tools/ant/Target.java Index: Target.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/Target.java,v retrieving revision 1.46.2.7 retrieving revision 1.46.2.8 diff -u -r1.46.2.7 -r1.46.2.8 --- Target.java 11 Jun 2004 16:38:56 -0000 1.46.2.7 +++ Target.java 13 Aug 2004 09:28:47 -0000 1.46.2.8 @@ -79,6 +79,7 @@ * Sets the location of this target's definition. * * @param location <CODE>Location</CODE> + * @since 1.6.2 */ public void setLocation(Location location) { this.location = location; @@ -88,6 +89,7 @@ * Get the location of this target's definition. * * @return <CODE>Location</CODE> + * @since 1.6.2 */ public Location getLocation() { return location; @@ -251,6 +253,7 @@ * * @return the "if" property condition or <code>null</code> if no * "if" condition had been defined. + * @since 1.6.2 */ public String getIf() { return ("".equals(ifCondition) ? null : ifCondition); @@ -278,6 +281,7 @@ * * @return the "unless" property condition or <code>null</code> * if no "unless" condition had been defined. + * @since 1.6.2 */ public String getUnless() { return ("".equals(unlessCondition) ? null : unlessCondition);
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]