You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by an...@apache.org on 2004/08/13 11:27:01 UTC

cvs commit: ant/src/main/org/apache/tools/ant Target.java

antoine     2004/08/13 02:27:01

  Modified:    src/main/org/apache/tools/ant Target.java
  Log:
  Add @since tags to methods introduced in Ant 1.6.2
  PR: 30276
  Submitted by: Jesse Glick
  
  Revision  Changes    Path
  1.57      +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.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- Target.java	24 Jul 2004 15:04:32 -0000	1.56
  +++ Target.java	13 Aug 2004 09:27:01 -0000	1.57
  @@ -80,6 +80,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;
  @@ -89,6 +90,7 @@
        * Get the location of this target's definition.
        *
        * @return <CODE>Location</CODE>
  +     * @since 1.6.2
        */
       public Location getLocation() {
           return location;
  @@ -247,6 +249,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);
  @@ -274,6 +277,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: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org