vgritsenko 2002/07/25 07:07:51 Modified: src/java/org/apache/cocoon/components/language/programming/java Tag: cocoon_2_0_3_branch JavaLanguage.java Javac.java Log: fix javadoc Revision Changes Path No revision No revision 1.10.2.1 +2 -2 xml-cocoon2/src/java/org/apache/cocoon/components/language/programming/java/JavaLanguage.java Index: JavaLanguage.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/language/programming/java/JavaLanguage.java,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -u -r1.10 -r1.10.2.1 --- JavaLanguage.java 8 Mar 2002 04:08:53 -0000 1.10 +++ JavaLanguage.java 25 Jul 2002 14:07:51 -0000 1.10.2.1 @@ -289,7 +289,7 @@ * empty string if no files were found, and is terminated by an * additional pathSeparator in all other cases. */ - private String expandDirs(String dirPaths) throws LanguageException { + private String expandDirs(String dirPaths) { StringTokenizer st = new StringTokenizer(dirPaths, File.pathSeparator); StringBuffer buffer = new StringBuffer(); while (st.hasMoreTokens()) { 1.6.2.1 +5 -8 xml-cocoon2/src/java/org/apache/cocoon/components/language/programming/java/Javac.java Index: Javac.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/language/programming/java/Javac.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -u -r1.6 -r1.6.2.1 --- Javac.java 22 Feb 2002 07:00:09 -0000 1.6 +++ Javac.java 25 Jul 2002 14:07:51 -0000 1.6.2.1 @@ -100,11 +100,8 @@ /** * Compile a source file yielding a loadable class file. * - * @param filename The object program base file name - * @param baseDirectory The directory containing the object program file - * @param encoding The encoding expected in the source file or * <code>null</code> if it is the platform's default encoding - * @exception LanguageException If an error occurs during compilation + * @exception IOException If an error occurs during compilation */ public boolean compile() throws IOException { ByteArrayOutputStream err = new ByteArrayOutputStream(); @@ -118,7 +115,7 @@ * Parse the compiler error stream to produce a list of * <code>CompilerError</code>s * - * @param errors The error stream + * @param input The error stream * @return The list of compiler error messages * @exception IOException If an error occurs during message collection */ @@ -134,7 +131,7 @@ * Parse the compiler error stream to produce a list of * <code>CompilerError</code>s * - * @param errors The error stream + * @param input The error stream * @return The list of compiler error messages * @exception IOException If an error occurs during message collection */ @@ -197,7 +194,7 @@ * Parse the compiler error stream to produce a list of * <code>CompilerError</code>s * - * @param errors The error stream + * @param input The error stream * @return The list of compiler error messages * @exception IOException If an error occurs during message collection */
---------------------------------------------------------------------- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]