craigmcc 2003/01/07 13:07:40 Modified: modeler build.xml modeler/src/java/org/apache/commons/modeler Registry.java modeler/src/java/org/apache/commons/modeler/util DomUtil.java IntrospectionUtils.java Log: Clean up some Javadoc generation whining under JDK 1.4.1. Revision Changes Path 1.7 +4 -1 jakarta-commons/modeler/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-commons/modeler/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- build.xml 20 Dec 2002 21:37:58 -0000 1.6 +++ build.xml 7 Jan 2003 21:07:40 -0000 1.7 @@ -34,6 +34,7 @@ <!-- The locations of necessary jar files --> + <property name="ant.jar" value="${ant.home}/lib/ant.jar"/> <property name="jaxp.jaxp.jar" value="${jaxp.home}/jaxp.jar"/> <property name="jaxp.parser.jar" value="${jaxp.home}/crimson.jar"/> <property name="jaxp.xalan.jar" value="${jaxp.home}/xalan.jar"/> @@ -89,6 +90,7 @@ <!-- Construct compile classpath --> <path id="compile.classpath"> <pathelement location="${build.home}/classes"/> + <pathelement location="${ant.jar}"/> <pathelement location="${jaxp.jaxp.jar}"/> <pathelement location="${jaxp.parser.jar}"/> <pathelement location="${jaxp.xalan.jar}"/> @@ -107,6 +109,7 @@ <path id="test.classpath"> <pathelement location="${build.home}/classes"/> <pathelement location="${build.home}/tests"/> + <pathelement location="${ant.jar}"/> <pathelement location="${jaxp.jaxp.jar}"/> <pathelement location="${jaxp.parser.jar}"/> <pathelement location="${jaxp.xalan.jar}"/> 1.13 +6 -6 jakarta-commons/modeler/src/java/org/apache/commons/modeler/Registry.java Index: Registry.java =================================================================== RCS file: /home/cvs/jakarta-commons/modeler/src/java/org/apache/commons/modeler/Registry.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- Registry.java 6 Jan 2003 05:55:44 -0000 1.12 +++ Registry.java 7 Jan 2003 21:07:40 -0000 1.13 @@ -421,11 +421,11 @@ } /** - * @todo Find if the 'className' is the name of the MBean or - * the real class ( I suppose first ) - * @todo Read (optional) descriptions from a .properties, generated - * from source - * @todo Deal with constructors + * todo Find if the 'className' is the name of the MBean or + * the real class ( I suppose first ). + * todo Read (optional) descriptions from a .properties, generated + * from source. + * todo Deal with constructors. * */ public ManagedBean createManagedBean(String domain, Class realClass, 1.3 +1 -1 jakarta-commons/modeler/src/java/org/apache/commons/modeler/util/DomUtil.java Index: DomUtil.java =================================================================== RCS file: /home/cvs/jakarta-commons/modeler/src/java/org/apache/commons/modeler/util/DomUtil.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- DomUtil.java 29 Dec 2002 18:01:42 -0000 1.2 +++ DomUtil.java 7 Jan 2003 21:07:40 -0000 1.3 @@ -121,7 +121,7 @@ return attN.getNodeValue(); } - /** Get the first child's content ( i.e. it's included TEXT node ) + /** Get the first child's content ( ie it's included TEXT node ). */ public static String getChildContent( Node parent, String name ) { Node first=parent.getFirstChild(); 1.2 +1 -1 jakarta-commons/modeler/src/java/org/apache/commons/modeler/util/IntrospectionUtils.java Index: IntrospectionUtils.java =================================================================== RCS file: /home/cvs/jakarta-commons/modeler/src/java/org/apache/commons/modeler/util/IntrospectionUtils.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- IntrospectionUtils.java 26 Dec 2002 18:12:39 -0000 1.1 +++ IntrospectionUtils.java 7 Jan 2003 21:07:40 -0000 1.2 @@ -470,7 +470,7 @@ } /** Replace ${NAME} with the property value - * @deprecated. Use the explicit method + * @deprecated Use the explicit method */ public static String replaceProperties(String value, Object getter )
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>