peterreilly 2005/03/14 05:56:44 Modified: src/main/org/apache/tools/ant/taskdefs XSLTLiaison2.java XSLTLogger.java XSLTLoggerAware.java Log: javadoc Revision Changes Path 1.8 +2 -1 ant/src/main/org/apache/tools/ant/taskdefs/XSLTLiaison2.java Index: XSLTLiaison2.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/XSLTLiaison2.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- XSLTLiaison2.java 9 Mar 2004 16:48:07 -0000 1.7 +++ XSLTLiaison2.java 14 Mar 2005 13:56:44 -0000 1.8 @@ -1,5 +1,5 @@ /* - * Copyright 2003-2004 The Apache Software Foundation + * Copyright 2003-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,6 +26,7 @@ public interface XSLTLiaison2 extends XSLTLiaison { /** * Configure the liasion from the XSLTProcess task + * @param xsltTask the XSLTProcess task */ void configure(XSLTProcess xsltTask); } 1.7 +3 -1 ant/src/main/org/apache/tools/ant/taskdefs/XSLTLogger.java Index: XSLTLogger.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/XSLTLogger.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- XSLTLogger.java 9 Feb 2004 21:05:21 -0000 1.6 +++ XSLTLogger.java 14 Mar 2005 13:56:44 -0000 1.7 @@ -1,5 +1,5 @@ /* - * Copyright 2001-2002,2004 The Apache Software Foundation + * Copyright 2001-2002,2004-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,11 +18,13 @@ package org.apache.tools.ant.taskdefs; /** + * Interface to log messages for XSLT * @since Ant 1.5 */ public interface XSLTLogger { /** * Log a message. + * @param msg the message to log */ void log(String msg); } 1.7 +6 -1 ant/src/main/org/apache/tools/ant/taskdefs/XSLTLoggerAware.java Index: XSLTLoggerAware.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/XSLTLoggerAware.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- XSLTLoggerAware.java 9 Feb 2004 21:05:21 -0000 1.6 +++ XSLTLoggerAware.java 14 Mar 2005 13:56:44 -0000 1.7 @@ -1,5 +1,5 @@ /* - * Copyright 2001-2002,2004 The Apache Software Foundation + * Copyright 2001-2002,2004-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,8 +18,13 @@ package org.apache.tools.ant.taskdefs; /** + * Interface for a class that one can set an XSLTLogger on. * @since Ant 1.5 */ public interface XSLTLoggerAware { + /** + * Set the logger for this class. + * @param l the logger + */ void setLogger(XSLTLogger l); }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]