From 03726c31c184d85fd5406483f12dbb540916424f Mon Sep 17 00:00:00 2001 From: Jan Materne Date: Mon, 10 Nov 2008 14:24:10 +0000 Subject: [PATCH] whitespaces git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@712663 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/UnknownElement.java | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/main/org/apache/tools/ant/UnknownElement.java b/src/main/org/apache/tools/ant/UnknownElement.java index 739d57081..45660ca45 100644 --- a/src/main/org/apache/tools/ant/UnknownElement.java +++ b/src/main/org/apache/tools/ant/UnknownElement.java @@ -70,7 +70,7 @@ public class UnknownElement extends Task { * @param elementName The name of the unknown element. * Must not be null. */ - public UnknownElement (String elementName) { + public UnknownElement(String elementName) { this.elementName = elementName; } @@ -92,7 +92,8 @@ public class UnknownElement extends Task { return elementName; } - /** Return the namespace of the XML element associated with this component. + /** + * Return the namespace of the XML element associated with this component. * * @return Namespace URI used in the xmlns declaration. */ @@ -117,7 +118,8 @@ public class UnknownElement extends Task { this.namespace = namespace == null ? "" : namespace; } - /** Return the qname of the XML element associated with this component. + /** + * Return the qname of the XML element associated with this component. * * @return namespace Qname used in the element declaration. */ @@ -125,7 +127,8 @@ public class UnknownElement extends Task { return qname; } - /** Set the namespace qname of the XML element. + /** + * Set the namespace qname of the XML element. * This method is typically called by the XML processor. * * @param qname the qualified name of the element @@ -232,6 +235,7 @@ public class UnknownElement extends Task { } } + /** * Handles output sent to System.out by this task or its real task. * @@ -258,7 +262,6 @@ public class UnknownElement extends Task { } } - /** * Handles error output sent to System.err by this task or its real task. *