peterreilly 2005/01/28 01:26:07 Modified: src/main/org/apache/tools/ant/types Reference.java Log: get reference ready for 1.6.3 Revision Changes Path 1.21 +4 -4 ant/src/main/org/apache/tools/ant/types/Reference.java Index: Reference.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/types/Reference.java,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- Reference.java 13 Jan 2005 13:50:38 -0000 1.20 +++ Reference.java 28 Jan 2005 09:26:07 -0000 1.21 @@ -49,7 +49,7 @@ * Create a reference to a named ID in a particular project. * @param p the project this reference is associated with * @param id the name of this reference - * @since Ant 1.7 + * @since Ant 1.6.3 */ public Reference(Project p, String id) { setRefId(id); @@ -77,7 +77,7 @@ * Set the associated project. Should not normally be necessary; * use [EMAIL PROTECTED] Reference#Reference(Project,String)}. * @param p the project to use - * @since Ant 1.7 + * @since Ant 1.6.3 */ public void setProject(Project p) { this.project = p; @@ -86,7 +86,7 @@ /** * Get the associated project, if any; may be null. * @return the associated project - * @since Ant 1.7 + * @since Ant 1.6.3 */ public Project getProject() { return project; @@ -117,7 +117,7 @@ * @see Project#getReference * @return the dereferenced object. * @throws BuildException if the project is null or the reference cannot be dereferenced - * @since Ant 1.7 + * @since Ant 1.6.3 */ public Object getReferencedObject() throws BuildException { if (project == null) {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]