From fb92f51f49cfd13419ef870b089db90603138eca Mon Sep 17 00:00:00 2001 From: Greg Wilkins Date: Tue, 12 Apr 2011 04:07:57 +0000 Subject: [PATCH] JETTY-1364 cleaned up javadoc git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3001 7e9141cc-0065-0410-87d8-b60c137991c4 --- .../eclipse/jetty/xml/XmlConfiguration.java | 21 +++++-------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java b/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java index 0ccc0711035..08a61bfaacf 100644 --- a/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java +++ b/jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java @@ -260,11 +260,13 @@ public class XmlConfiguration /* ------------------------------------------------------------ */ /** - * Configure an object. If the object is of the approprate class, the XML configuration script is applied to the object. + * Configure an object. + * + *

Apply the XML configuration script to the passed object.

* * @param obj - * The object to be configured. - * @exception Exception + * The object to be configured, which must be of a type or super type of the class attribute of the Configure element. + * @exception Exception */ public Object configure(Object obj) throws Exception { @@ -300,13 +302,6 @@ public class XmlConfiguration } /* ------------------------------------------------------------ */ - /** - * Configure an object. If the object is of the approprate class, the XML configuration script is applied to the object. - * - * @param obj - * The object to be configured. - * @exception Exception - */ public Object configure(Object obj) throws Exception { // Check the class of the object @@ -318,12 +313,6 @@ public class XmlConfiguration } /* ------------------------------------------------------------ */ - /** - * Configure an object. If the configuration has an ID, an object is looked up by ID and it's type check. Otherwise a new object is created. - * - * @return The newly created configured object. - * @exception Exception - */ public Object configure() throws Exception { Class oClass = (Class)nodeClass(_config);