Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 78097 invoked from network); 17 Jul 2004 16:31:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 17 Jul 2004 16:31:46 -0000 Received: (qmail 35918 invoked by uid 500); 17 Jul 2004 16:31:44 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 35760 invoked by uid 500); 17 Jul 2004 16:31:43 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 35380 invoked by uid 500); 17 Jul 2004 16:31:41 -0000 Received: (qmail 35366 invoked by uid 99); 17 Jul 2004 16:31:41 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Sat, 17 Jul 2004 09:31:41 -0700 Received: (qmail 77989 invoked by uid 1652); 17 Jul 2004 16:31:40 -0000 Date: 17 Jul 2004 16:31:40 -0000 Message-ID: <20040717163140.77988.qmail@minotaur.apache.org> From: antoine@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant Location.java Project.java RuntimeConfigurable.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N antoine 2004/07/17 09:31:40 Modified: src/main/org/apache/tools/ant Location.java Project.java RuntimeConfigurable.java Log: Javadoc fixes for RuntimeConfigurable, Project, Location PR: 30160 Submitted by: Jesse Glick (jglick at netbeans dot org) Revision Changes Path 1.20 +1 -1 ant/src/main/org/apache/tools/ant/Location.java Index: Location.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/Location.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- Location.java 9 Mar 2004 16:47:59 -0000 1.19 +++ Location.java 17 Jul 2004 16:31:40 -0000 1.20 @@ -113,7 +113,7 @@ * An error message can be appended easily. For unknown locations, an * empty string is returned. * - * @return a String of the form "fileName: lineNumber: " + * @return a String of the form "fileName:lineNumber: " * if both file name and line number are known, * "fileName: " if only the file name is known, * and the empty string for unknown locations. 1.171 +6 -6 ant/src/main/org/apache/tools/ant/Project.java Index: Project.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/Project.java,v retrieving revision 1.170 retrieving revision 1.171 diff -u -r1.170 -r1.171 --- Project.java 24 Jun 2004 19:30:03 -0000 1.170 +++ Project.java 17 Jul 2004 16:31:40 -0000 1.171 @@ -88,31 +88,31 @@ /** * Version constant for Java 1.0 * - * @deprecated use org.apache.tools.ant.util.JavaEnvUtils instead + * @deprecated Use {@link JavaEnvUtils#JAVA_1_0} instead. */ public static final String JAVA_1_0 = JavaEnvUtils.JAVA_1_0; /** * Version constant for Java 1.1 * - * @deprecated use org.apache.tools.ant.util.JavaEnvUtils instead + * @deprecated Use {@link JavaEnvUtils#JAVA_1_1} instead. */ public static final String JAVA_1_1 = JavaEnvUtils.JAVA_1_1; /** * Version constant for Java 1.2 * - * @deprecated use org.apache.tools.ant.util.JavaEnvUtils instead + * @deprecated Use {@link JavaEnvUtils#JAVA_1_2} instead. */ public static final String JAVA_1_2 = JavaEnvUtils.JAVA_1_2; /** * Version constant for Java 1.3 * - * @deprecated use org.apache.tools.ant.util.JavaEnvUtils instead + * @deprecated Use {@link JavaEnvUtils#JAVA_1_3} instead. */ public static final String JAVA_1_3 = JavaEnvUtils.JAVA_1_3; /** * Version constant for Java 1.4 * - * @deprecated use org.apache.tools.ant.util.JavaEnvUtils instead + * @deprecated Use {@link JavaEnvUtils#JAVA_1_4} instead. */ public static final String JAVA_1_4 = JavaEnvUtils.JAVA_1_4; 1.52 +4 -2 ant/src/main/org/apache/tools/ant/RuntimeConfigurable.java Index: RuntimeConfigurable.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/RuntimeConfigurable.java,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- RuntimeConfigurable.java 24 May 2004 15:09:55 -0000 1.51 +++ RuntimeConfigurable.java 17 Jul 2004 16:31:40 -0000 1.52 @@ -180,6 +180,7 @@ /** Return the attribute map. * * @return Attribute name to attribute value map + * @since Ant 1.6 */ public Hashtable getAttributeMap() { if (attributeMap != null) { @@ -192,7 +193,7 @@ /** * Returns the list of attributes for the wrapped element. * - * @deprecated + * @deprecated Deprecated since Ant 1.6 in favor of {@link #getAttributeMap}. * @return An AttributeList representing the attributes defined in the * XML for this element. May be null. */ @@ -228,7 +229,7 @@ /** * Returns an enumeration of all child wrappers. * @return an enumeration of the child wrappers. - * @since Ant 1.5.1 + * @since Ant 1.6 */ public Enumeration getChildren() { if (children != null) { @@ -279,6 +280,7 @@ * multiple fragments. * * @return the text content of this element. + * @since Ant 1.6 */ public StringBuffer getText() { if (characters != null) { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org