vgritsenko 2002/07/25 07:07:52
Modified: src/java/org/apache/cocoon/components/language/programming/java
JavaLanguage.java Javac.java
Log:
fix javadoc
Revision Changes Path
1.12 +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.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- JavaLanguage.java 14 May 2002 12:46:57 -0000 1.11
+++ JavaLanguage.java 25 Jul 2002 14:07:51 -0000 1.12
@@ -280,7 +280,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.7 +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.7
diff -u -r1.6 -r1.7
--- Javac.java 22 Feb 2002 07:00:09 -0000 1.6
+++ Javac.java 25 Jul 2002 14:07:52 -0000 1.7
@@ -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]