From b668edbb68e11930be1bdbd4cb100a7fc3f3af50 Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Wed, 23 Jul 2003 10:50:32 +0000 Subject: [PATCH] stylecheck git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274904 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/Description.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/org/apache/tools/ant/types/Description.java b/src/main/org/apache/tools/ant/types/Description.java index 2f334339f..035b22392 100644 --- a/src/main/org/apache/tools/ant/types/Description.java +++ b/src/main/org/apache/tools/ant/types/Description.java @@ -102,6 +102,14 @@ public class Description extends DataType { } } + /** + * return the descriptions from all the targets of + * a project. + * + * @param project the project to get the descriptions for. + * @return a string containing the concatenated descriptions of + * the targets. + */ public static String getDescription(Project project) { StringBuffer description = new StringBuffer(); Vector targets = (Vector) project.getReference("ant.targets");