donaldp 02/05/22 18:50:29
Modified: ant1compat/src/java/org/apache/tools/ant LoaderUtils.java
OriginalAnt1Task.java
antlib/src/java/org/apache/antlib/build BuildNumber.java
Checksum.java SleepTask.java
antlib/src/java/org/apache/antlib/core IfTask.java
antlib/src/java/org/apache/antlib/cvslib CVSPass.java
antlib/src/java/org/apache/antlib/dotnet CSharp.java
Ilasm.java
antlib/src/java/org/apache/antlib/file Touch.java
antlib/src/java/org/apache/antlib/vfile CopyFilesTask.java
ListFilesTask.java
api/src/java/org/apache/myrmidon/api AbstractTask.java
Task.java TaskContext.java
aut/src/java/org/apache/aut/converter AbstractConverter.java
AbstractMasterConverter.java Converter.java
aut/src/java/org/apache/aut/nativelib/impl/launchers
CommandLauncher.java DefaultCommandLauncher.java
container/src/java/org/apache/myrmidon/components/builder
DefaultProject.java DefaultProjectBuilder.java
container/src/java/org/apache/myrmidon/components/configurer
ClassicConfigurer.java DefaultConfigurer.java
container/src/java/org/apache/myrmidon/components/converter
DefaultMasterConverter.java
container/src/java/org/apache/myrmidon/components/deployer
DefaultDeployer.java
container/src/java/org/apache/myrmidon/components/library
MultiParentURLClassLoader.java
container/src/java/org/apache/myrmidon/components/property
DefaultPropertyResolver.java
container/src/java/org/apache/myrmidon/components/type
DefaultTypeManager.java
container/src/java/org/apache/myrmidon/interfaces
BasicLogger.java
container/src/java/org/apache/myrmidon/interfaces/builder
ModelBuilder.java ProjectBuilder.java
container/src/java/org/apache/myrmidon/interfaces/configurer
Configurer.java
container/src/java/org/apache/myrmidon/interfaces/deployer
Deployer.java
container/src/java/org/apache/myrmidon/interfaces/executor
Executor.java
container/src/java/org/apache/myrmidon/interfaces/property
PropertyResolver.java
container/src/java/org/apache/myrmidon/interfaces/type
TypeFactory.java
container/src/java/org/apache/myrmidon/launcher Main.java
framework/src/java/org/apache/myrmidon/framework
AbstractContainerTask.java Pattern.java
framework/src/todo/org/apache/tools/todo/taskdefs Cab.java
DependSet.java Echo.java Entry.java Get.java
IContract.java Javah.java NetRexxC.java Script.java
SQLExec.java WaitFor.java
framework/src/todo/org/apache/tools/todo/taskdefs/archive
Expand.java Jar.java Zip.java
framework/src/todo/org/apache/tools/todo/taskdefs/exec
ExecuteStreamHandler.java
framework/src/todo/org/apache/tools/todo/taskdefs/i18n
Translate.java
framework/src/todo/org/apache/tools/todo/taskdefs/javac
CompilerAdapter.java Gcj.java Javac.java
JavacExternal.java Jikes.java Sj.java
framework/src/todo/org/apache/tools/todo/taskdefs/jsp/compilers
CompilerAdapter.java
framework/src/todo/org/apache/tools/todo/taskdefs/junit
AggregateTransformer.java
BriefJUnitResultFormatter.java
DOMElementWriter.java JUnitResultFormatter.java
JUnitTask.java JUnitTestRunner.java
SummaryJUnitResultFormatter.java XalanExecutor.java
XMLJUnitResultFormatter.java
framework/src/todo/org/apache/tools/todo/taskdefs/manifest
ManifestTask.java
framework/src/todo/org/apache/tools/todo/taskdefs/net
FTP.java MimeMail.java
framework/src/todo/org/apache/tools/todo/taskdefs/rmic
RmicAdapter.java
framework/src/todo/org/apache/tools/todo/taskdefs/text
FixCRLF.java Native2Ascii.java Replace.java
ReplaceRegExp.java
framework/src/todo/org/apache/tools/todo/taskdefs/vss
MSVSSGET.java MSVSSHISTORY.java MSVSSLABEL.java
framework/src/todo/org/apache/tools/todo/types
EnumeratedAttribute.java
framework/src/todo/org/apache/tools/todo/util/regexp
JakartaOroMatcher.java JakartaRegexpMatcher.java
Jdk14RegexpMatcher.java Regexp.java
RegexpFactory.java RegexpMatcher.java
RegexpMatcherFactory.java
Log:
@exception --> @throws
Revision Changes Path
1.2 +3 -3
jakarta-ant-myrmidon/ant1compat/src/java/org/apache/tools/ant/LoaderUtils.java
Index: LoaderUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/ant1compat/src/java/org/apache/tools/ant/LoaderUtils.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- LoaderUtils.java 14 Apr 2002 12:38:40 -0000 1.1
+++ LoaderUtils.java 23 May 2002 01:50:24 -0000 1.2
@@ -86,7 +86,7 @@
* @param location the location to be searched
* @param defaultFile default file if none can be found
* @return an array of URLs for the relevant jars
- * @exception MalformedURLException the URLs cannot be created
+ * @throws MalformedURLException the URLs cannot be created
*/
public static URL[] getLocationURLs(URL location, String defaultFile)
throws MalformedURLException {
@@ -100,7 +100,7 @@
* @param extensions array of allowable file extensions
* @param defaultFile default file if none can be found
* @return an array of URLs for the relevant jars
- * @exception MalformedURLException if the URL to the jars could not be
+ * @throws MalformedURLException if the URL to the jars could not be
* formed
*/
public static URL[] getLocationURLs(URL location, String defaultFile,
@@ -227,7 +227,7 @@
* @param extensions an array of file extensions to be considered in the
* search
* @return an array of URLs for the file found in the directory.
- * @exception MalformedURLException if the URLs to the jars cannot be
+ * @throws MalformedURLException if the URLs to the jars cannot be
* formed
*/
private static URL[] getLocalURLs(File location,
1.2 +3 -3
jakarta-ant-myrmidon/ant1compat/src/java/org/apache/tools/ant/OriginalAnt1Task.java
Index: OriginalAnt1Task.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/ant1compat/src/java/org/apache/tools/ant/OriginalAnt1Task.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- OriginalAnt1Task.java 14 Apr 2002 12:38:40 -0000 1.1
+++ OriginalAnt1Task.java 23 May 2002 01:50:24 -0000 1.2
@@ -169,7 +169,7 @@
* Called by the project to let the task initialize properly.
* The default implementation is a no-op.
*
- * @exception BuildException if someting goes wrong with the build
+ * @throws BuildException if someting goes wrong with the build
*/
public void init() throws BuildException {}
@@ -180,7 +180,7 @@
* if target1 and target2 both depend on target3, then running
* "ant target1 target2" will run all tasks in target3 twice.
*
- * @exception BuildException if something goes wrong with the build
+ * @throws BuildException if something goes wrong with the build
*/
public void execute() throws BuildException {}
@@ -245,7 +245,7 @@
* If the task has been invalidated, it is replaced with an
* UnknownElement task which uses the new definition in the project.
*
- * @exception BuildException if the task cannot be configured.
+ * @throws BuildException if the task cannot be configured.
*/
public void maybeConfigure() throws BuildException {
if (!invalid) {
1.2 +2 -2
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/build/BuildNumber.java
Index: BuildNumber.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/build/BuildNumber.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BuildNumber.java 14 Apr 2002 10:55:08 -0000 1.1
+++ BuildNumber.java 23 May 2002 01:50:24 -0000 1.2
@@ -27,7 +27,7 @@
* by one and write it back out into the file.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.1 $ $Date: 2002/04/14 10:55:08 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:24 $
* @ant.task name="build-number"
*/
public class BuildNumber
@@ -65,7 +65,7 @@
/**
* Run task.
*
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public void execute()
throws TaskException
1.2 +2 -2
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/build/Checksum.java
Index: Checksum.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/build/Checksum.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Checksum.java 14 Apr 2002 10:55:08 -0000 1.1
+++ Checksum.java 23 May 2002 01:50:24 -0000 1.2
@@ -32,7 +32,7 @@
*
* @ant.task name="checksum"
* @author <a href="mailto:[EMAIL PROTECTED]">Magesh Umasankar</a>
- * @version $Revision: 1.1 $ $Date: 2002/04/14 10:55:08 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:24 $
*/
public class Checksum
extends AbstractMatchingTask
@@ -174,7 +174,7 @@
* Add key-value pair to the hashtable upon which to later operate upon.
*
* @param file The feature to be added to the ToIncludeFileMap attribute
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private void addToIncludeFileMap( final File file )
throws TaskException
1.2 +2 -2
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/build/SleepTask.java
Index: SleepTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/build/SleepTask.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SleepTask.java 14 Apr 2002 10:55:08 -0000 1.1
+++ SleepTask.java 23 May 2002 01:50:24 -0000 1.2
@@ -17,7 +17,7 @@
*
* @ant.task name="sleep"
* @author [EMAIL PROTECTED] steve loughran
- * @version $Revision: 1.1 $ $Date: 2002/04/14 10:55:08 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:24 $
*/
public class SleepTask
extends AbstractTask
@@ -82,7 +82,7 @@
* Executes this build task. throws org.apache.tools.ant.TaskException if
* there is an error during task execution.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
1.3 +4 -4
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/core/IfTask.java
Index: IfTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/core/IfTask.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- IfTask.java 21 Apr 2002 02:00:18 -0000 1.2
+++ IfTask.java 23 May 2002 01:50:24 -0000 1.3
@@ -23,7 +23,7 @@
* then it will execute the inner tasks, else it won't.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.2 $ $Date: 2002/04/21 02:00:18 $
+ * @version $Revision: 1.3 $ $Date: 2002/05/23 01:50:24 $
* @ant.task name="if"
*/
public class IfTask
@@ -39,7 +39,7 @@
* Set if clause on pattern.
*
* @param condition the condition
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public void setTest( final String condition )
throws TaskException
@@ -52,7 +52,7 @@
* Set unless clause of pattern.
*
* @param condition the unless clause
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public void setNotTest( final String condition )
throws TaskException
@@ -109,7 +109,7 @@
* Utility method to make sure condition unset.
* Made so that it is not possible for both if and unless to be set.
*
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
private void verifyConditionNull()
throws TaskException
1.3 +2 -2
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/cvslib/CVSPass.java
Index: CVSPass.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/cvslib/CVSPass.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CVSPass.java 20 Apr 2002 12:53:37 -0000 1.2
+++ CVSPass.java 23 May 2002 01:50:24 -0000 1.3
@@ -22,7 +22,7 @@
* CVSLogin Adds an new entry to a CVS password file
*
* @author <a href="[EMAIL PROTECTED]">Jeff Martin</a>
- * @version $Revision: 1.2 $ $Date: 2002/04/20 12:53:37 $
+ * @version $Revision: 1.3 $ $Date: 2002/05/23 01:50:24 $
* @ant.task name="cvs-pass"
*/
public class CVSPass
@@ -102,7 +102,7 @@
/**
* Does the work.
*
- * @exception TaskException if someting goes wrong with the build
+ * @throws TaskException if someting goes wrong with the build
*/
public final void execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/dotnet/CSharp.java
Index: CSharp.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/dotnet/CSharp.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CSharp.java 14 Apr 2002 10:56:03 -0000 1.1
+++ CSharp.java 23 May 2002 01:50:24 -0000 1.2
@@ -423,7 +423,7 @@
* define the target
*
* @param targetType The new TargetType value
- * @exception TaskException if target is not one of
+ * @throws TaskException if target is not one of
* exe|library|module|winexe
*/
public void setTargetType( final String targetType )
1.2 +1 -1
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/dotnet/Ilasm.java
Index: Ilasm.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/dotnet/Ilasm.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Ilasm.java 14 Apr 2002 10:56:03 -0000 1.1
+++ Ilasm.java 23 May 2002 01:50:24 -0000 1.2
@@ -178,7 +178,7 @@
* define the target
*
* @param targetType one of exe|library|
- * @exception TaskException if target is not one of
+ * @throws TaskException if target is not one of
* exe|library|module|winexe
*/
1.2 +2 -2
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/file/Touch.java
Index: Touch.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/file/Touch.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Touch.java 14 Apr 2002 10:56:03 -0000 1.1
+++ Touch.java 23 May 2002 01:50:24 -0000 1.2
@@ -32,7 +32,7 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Stefan Bodewig</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Michael J. Sikorsky</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Robert Shaw</a>
- * @version $Revision: 1.1 $ $Date: 2002/04/14 10:56:03 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:24 $
*/
public class Touch
extends AbstractTask
@@ -81,7 +81,7 @@
/**
* Execute the touch operation.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/vfile/CopyFilesTask.java
Index: CopyFilesTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/vfile/CopyFilesTask.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CopyFilesTask.java 14 Apr 2002 10:56:19 -0000 1.1
+++ CopyFilesTask.java 23 May 2002 01:50:24 -0000 1.2
@@ -83,7 +83,7 @@
* It is called after Task has been Configured and Initialized and before
* beig Disposed (If task implements appropriate interfaces).
*
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public void execute()
throws TaskException
1.2 +2 -2
jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/vfile/ListFilesTask.java
Index: ListFilesTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/antlib/src/java/org/apache/antlib/vfile/ListFilesTask.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ListFilesTask.java 14 Apr 2002 10:56:19 -0000 1.1
+++ ListFilesTask.java 23 May 2002 01:50:24 -0000 1.2
@@ -15,7 +15,7 @@
* A debug task, which prints out the files in a file list.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Adam Murdoch</a>
- * @version $Revision: 1.1 $ $Date: 2002/04/14 10:56:19 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:24 $
*
* @ant.task name="v-list-path"
*/
@@ -32,7 +32,7 @@
/**
* Execute task.
*
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public void execute()
throws TaskException
1.25 +2 -2
jakarta-ant-myrmidon/api/src/java/org/apache/myrmidon/api/AbstractTask.java
Index: AbstractTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/api/src/java/org/apache/myrmidon/api/AbstractTask.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- AbstractTask.java 18 Mar 2002 11:49:46 -0000 1.24
+++ AbstractTask.java 23 May 2002 01:50:24 -0000 1.25
@@ -13,7 +13,7 @@
* This is the class that Task writers should extend to provide custom tasks.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.24 $ $Date: 2002/03/18 11:49:46 $
+ * @version $Revision: 1.25 $ $Date: 2002/05/23 01:50:24 $
*/
public abstract class AbstractTask
implements Task
@@ -37,7 +37,7 @@
* This method is called to perform actual work associated with task.
* It is called after Task has been configured.
*
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public abstract void execute()
throws TaskException;
1.18 +2 -2
jakarta-ant-myrmidon/api/src/java/org/apache/myrmidon/api/Task.java
Index: Task.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/api/src/java/org/apache/myrmidon/api/Task.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- Task.java 24 Apr 2002 02:20:59 -0000 1.17
+++ Task.java 23 May 2002 01:50:24 -0000 1.18
@@ -16,7 +16,7 @@
* onto the task object.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.17 $ $Date: 2002/04/24 02:20:59 $
+ * @version $Revision: 1.18 $ $Date: 2002/05/23 01:50:24 $
* @ant.role name="task"
*/
public interface Task
@@ -36,7 +36,7 @@
* This method is called to perform actual work associated with task.
* It is called after Task has been Configured.
*
- * @exception TaskException if task fails to execute
+ * @throws TaskException if task fails to execute
*/
void execute()
throws TaskException;
1.34 +2 -2
jakarta-ant-myrmidon/api/src/java/org/apache/myrmidon/api/TaskContext.java
Index: TaskContext.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/api/src/java/org/apache/myrmidon/api/TaskContext.java,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- TaskContext.java 5 May 2002 12:20:41 -0000 1.33
+++ TaskContext.java 23 May 2002 01:50:24 -0000 1.34
@@ -16,7 +16,7 @@
* path between the container and the Task.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.33 $ $Date: 2002/05/05 12:20:41 $
+ * @version $Revision: 1.34 $ $Date: 2002/05/23 01:50:24 $
*
* @todo Add some additional standard properties.
*/
@@ -82,7 +82,7 @@
*
* @param serviceClass the interface class that defines the service
* @return an instance of the service implementing interface specified
by parameter
- * @exception TaskException is thrown when the service is unavailable or
not supported
+ * @throws TaskException is thrown when the service is unavailable or
not supported
*/
Object getService( Class serviceClass )
throws TaskException;
1.7 +3 -3
jakarta-ant-myrmidon/aut/src/java/org/apache/aut/converter/AbstractConverter.java
Index: AbstractConverter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/aut/src/java/org/apache/aut/converter/AbstractConverter.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- AbstractConverter.java 14 Apr 2002 09:22:48 -0000 1.6
+++ AbstractConverter.java 23 May 2002 01:50:25 -0000 1.7
@@ -14,7 +14,7 @@
* Instances of this interface are used to convert between different types.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.6 $ $Date: 2002/04/14 09:22:48 $
+ * @version $Revision: 1.7 $ $Date: 2002/05/23 01:50:25 $
*/
public abstract class AbstractConverter
implements Converter
@@ -44,7 +44,7 @@
* @param original the original Object
* @param context the context in which to convert
* @return the converted object
- * @exception ConverterException if an error occurs
+ * @throws ConverterException if an error occurs
*/
public Object convert( final Class destination,
final Object original,
@@ -74,7 +74,7 @@
* @param original the original Object
* @param context the context in which to convert
* @return the converted object
- * @exception org.apache.aut.converter.ConverterException if an error
occurs
+ * @throws org.apache.aut.converter.ConverterException if an error occurs
*/
protected abstract Object convert( Object original, Object context )
throws org.apache.aut.converter.ConverterException;
1.7 +2 -2
jakarta-ant-myrmidon/aut/src/java/org/apache/aut/converter/AbstractMasterConverter.java
Index: AbstractMasterConverter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/aut/src/java/org/apache/aut/converter/AbstractMasterConverter.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- AbstractMasterConverter.java 14 Apr 2002 09:22:48 -0000 1.6
+++ AbstractMasterConverter.java 23 May 2002 01:50:25 -0000 1.7
@@ -30,7 +30,7 @@
* when it is first used.</p>
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.6 $ $Date: 2002/04/14 09:22:48 $
+ * @version $Revision: 1.7 $ $Date: 2002/05/23 01:50:25 $
*/
public abstract class AbstractMasterConverter
implements Converter
@@ -56,7 +56,7 @@
* @param original the original object
* @param context the context in which to convert
* @return the converted object
- * @exception ConverterException if an error occurs
+ * @throws ConverterException if an error occurs
*/
public Object convert( final Class destination,
final Object original,
1.8 +2 -2
jakarta-ant-myrmidon/aut/src/java/org/apache/aut/converter/Converter.java
Index: Converter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/aut/src/java/org/apache/aut/converter/Converter.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- Converter.java 24 Apr 2002 02:20:59 -0000 1.7
+++ Converter.java 23 May 2002 01:50:25 -0000 1.8
@@ -11,7 +11,7 @@
* Instances of this interface are used to convert between different types.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.7 $ $Date: 2002/04/24 02:20:59 $
+ * @version $Revision: 1.8 $ $Date: 2002/05/23 01:50:25 $
* @ant.role name="converter"
*/
public interface Converter
@@ -28,7 +28,7 @@
* @param original the original type
* @param context the context in which to convert
* @return the converted object
- * @exception ConverterException if an error occurs
+ * @throws ConverterException if an error occurs
*/
Object convert( Class destination, Object original, Object context )
throws ConverterException;
1.3 +3 -3
jakarta-ant-myrmidon/aut/src/java/org/apache/aut/nativelib/impl/launchers/CommandLauncher.java
Index: CommandLauncher.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/aut/src/java/org/apache/aut/nativelib/impl/launchers/CommandLauncher.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CommandLauncher.java 6 Feb 2002 13:34:46 -0000 1.2
+++ CommandLauncher.java 23 May 2002 01:50:25 -0000 1.3
@@ -20,7 +20,7 @@
* <code>CommandLauncher</code> most appropriate for their environment.</p>
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.2 $ $Date: 2002/02/06 13:34:46 $
+ * @version $Revision: 1.3 $ $Date: 2002/05/23 01:50:25 $
*/
public interface CommandLauncher
{
@@ -29,11 +29,11 @@
*
* @param metaData the native command to execute
* @return the Process launched by the CommandLauncher
- * @exception IOException is thrown when the native code can not
+ * @throws IOException is thrown when the native code can not
* launch the application for some reason. Usually due
* to the command not being fully specified and not in
* the PATH env var.
- * @exception ExecException if the command launcher detects that
+ * @throws ExecException if the command launcher detects that
* it can not execute the native command for some reason.
*/
Process exec( ExecMetaData metaData )
1.5 +3 -3
jakarta-ant-myrmidon/aut/src/java/org/apache/aut/nativelib/impl/launchers/DefaultCommandLauncher.java
Index: DefaultCommandLauncher.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/aut/src/java/org/apache/aut/nativelib/impl/launchers/DefaultCommandLauncher.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DefaultCommandLauncher.java 29 Mar 2002 12:56:37 -0000 1.4
+++ DefaultCommandLauncher.java 23 May 2002 01:50:25 -0000 1.5
@@ -23,7 +23,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Thomas Haas</a>
- * @version $Revision: 1.4 $ $Date: 2002/03/29 12:56:37 $
+ * @version $Revision: 1.5 $ $Date: 2002/05/23 01:50:25 $
*/
public class DefaultCommandLauncher
implements CommandLauncher
@@ -56,11 +56,11 @@
*
* @param metaData the native command to execute
* @return the Process launched by the CommandLauncher
- * @exception IOException is thrown when the native code can not
+ * @throws IOException is thrown when the native code can not
* launch the application for some reason. Usually due
* to the command not being fully specified and not in
* the PATH env var.
- * @exception ExecException if the command launcher detects that
+ * @throws ExecException if the command launcher detects that
* it can not execute the native command for some reason.
*/
public Process exec( final ExecMetaData metaData )
1.15 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/builder/DefaultProject.java
Index: DefaultProject.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/builder/DefaultProject.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- DefaultProject.java 23 May 2002 01:01:45 -0000 1.14
+++ DefaultProject.java 23 May 2002 01:50:25 -0000 1.15
@@ -24,7 +24,7 @@
* Default project implementation.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.14 $ $Date: 2002/05/23 01:01:45 $
+ * @version $Revision: 1.15 $ $Date: 2002/05/23 01:50:25 $
*/
public class DefaultProject
implements Project, TargetMetaData
@@ -141,7 +141,7 @@
*
* @param name the name of target
* @param target the Target
- * @exception IllegalArgumentException if target already exists with
same name
+ * @throws IllegalArgumentException if target already exists with same
name
*/
public final void addTarget( final String name, final Target target )
{
1.57 +4 -4
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/builder/DefaultProjectBuilder.java
Index: DefaultProjectBuilder.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/builder/DefaultProjectBuilder.java,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- DefaultProjectBuilder.java 21 May 2002 07:57:14 -0000 1.56
+++ DefaultProjectBuilder.java 23 May 2002 01:50:25 -0000 1.57
@@ -35,7 +35,7 @@
* Default implementation to construct project from a build file.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.56 $ $Date: 2002/05/21 07:57:14 $
+ * @version $Revision: 1.57 $ $Date: 2002/05/23 01:50:25 $
*
* @ant.type type="project-builder" name="ant2"
*/
@@ -68,7 +68,7 @@
*
* @param source the source
* @return the constructed Project
- * @exception ProjectException if an error occurs
+ * @throws ProjectException if an error occurs
*/
public Project build( final String source )
throws ProjectException
@@ -131,7 +131,7 @@
* @param file the file from which configuration was loaded
* @param model the project model
* @return the created Project
- * @exception ProjectException if an error occurs building the project
+ * @throws ProjectException if an error occurs building the project
*/
private DefaultProject buildProject( final File file,
final ModelElement model )
@@ -268,7 +268,7 @@
*
* @param project the project
* @param model the model
- * @exception ProjectException if an error occurs
+ * @throws ProjectException if an error occurs
*/
private void buildTopLevelProject( final DefaultProject project,
final ModelElement model )
1.14 +5 -5
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/configurer/ClassicConfigurer.java
Index: ClassicConfigurer.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/configurer/ClassicConfigurer.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ClassicConfigurer.java 21 Apr 2002 02:41:23 -0000 1.13
+++ ClassicConfigurer.java 23 May 2002 01:50:25 -0000 1.14
@@ -65,7 +65,7 @@
* @param clazz the Class object to use during configuration
* @param model the configuration
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
public void configureElement( Object object,
Class clazz,
@@ -91,7 +91,7 @@
* @param name the attribute name
* @param value the attribute value
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
public void configureAttribute( Object object,
Class clazz,
@@ -114,7 +114,7 @@
* @param object the object
* @param model the configuration
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
public void configureElement( final Object object,
final ModelElement model,
@@ -204,7 +204,7 @@
* @param name the attribute name
* @param value the attribute value
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
public void configureAttribute( final Object object,
final String name,
@@ -221,7 +221,7 @@
* @param object the object
* @param content the content value to be set
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
private void configureContent( final Object object,
final String content,
1.50 +4 -4
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/configurer/DefaultConfigurer.java
Index: DefaultConfigurer.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/configurer/DefaultConfigurer.java,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- DefaultConfigurer.java 24 Apr 2002 02:20:59 -0000 1.49
+++ DefaultConfigurer.java 23 May 2002 01:50:25 -0000 1.50
@@ -32,7 +32,7 @@
* Class used to configure tasks.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.49 $ $Date: 2002/04/24 02:20:59 $
+ * @version $Revision: 1.50 $ $Date: 2002/05/23 01:50:25 $
* @ant.type type="configurer" name="default"
*/
public class DefaultConfigurer
@@ -74,7 +74,7 @@
* @param object the object
* @param configuration the configuration
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
public void configureElement( final Object object,
final ModelElement configuration,
@@ -225,7 +225,7 @@
* @param name the attribute name
* @param value the attribute value
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
public void configureAttribute( final Object object,
final String name,
@@ -245,7 +245,7 @@
* @param name the attribute name
* @param value the attribute value
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
public void configureAttribute( final Object object,
final Class clazz,
1.29 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/converter/DefaultMasterConverter.java
Index: DefaultMasterConverter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/converter/DefaultMasterConverter.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- DefaultMasterConverter.java 23 Mar 2002 04:56:24 -0000 1.28
+++ DefaultMasterConverter.java 23 May 2002 01:50:25 -0000 1.29
@@ -20,7 +20,7 @@
* Converter engine to handle converting between types.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.28 $ $Date: 2002/03/23 04:56:24 $
+ * @version $Revision: 1.29 $ $Date: 2002/05/23 01:50:25 $
*/
public class DefaultMasterConverter
extends AbstractMasterConverter
@@ -32,7 +32,7 @@
* Retrieve relevent services needed to deploy.
*
* @param serviceManager the ServiceManager
- * @exception ServiceException if an error occurs
+ * @throws ServiceException if an error occurs
*/
public void service( final ServiceManager serviceManager )
throws ServiceException
1.43 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/deployer/DefaultDeployer.java
Index: DefaultDeployer.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/deployer/DefaultDeployer.java,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- DefaultDeployer.java 18 May 2002 23:36:32 -0000 1.42
+++ DefaultDeployer.java 23 May 2002 01:50:25 -0000 1.43
@@ -27,7 +27,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Adam Murdoch</a>
- * @version $Revision: 1.42 $ $Date: 2002/05/18 23:36:32 $
+ * @version $Revision: 1.43 $ $Date: 2002/05/23 01:50:25 $
*/
public class DefaultDeployer
extends AbstractLogEnabled
@@ -44,7 +44,7 @@
* Retrieve relevent services needed to deploy.
*
* @param serviceManager the ServiceManager
- * @exception ServiceException if an error occurs
+ * @throws ServiceException if an error occurs
*/
public void service( final ServiceManager serviceManager )
throws ServiceException
1.2 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/library/MultiParentURLClassLoader.java
Index: MultiParentURLClassLoader.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/library/MultiParentURLClassLoader.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MultiParentURLClassLoader.java 3 May 2002 06:56:11 -0000 1.1
+++ MultiParentURLClassLoader.java 23 May 2002 01:50:25 -0000 1.2
@@ -21,7 +21,7 @@
* A URLClassLoader with more than one parent.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Adam Murdoch</a>
- * @version $Revision: 1.1 $ $Date: 2002/05/03 06:56:11 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:25 $
*/
public class MultiParentURLClassLoader
extends URLClassLoader
@@ -45,7 +45,7 @@
*
* @param name the name of the class
* @return the resulting class
- * @exception java.lang.ClassNotFoundException if the class could not be
found
+ * @throws java.lang.ClassNotFoundException if the class could not be
found
*/
protected Class findClass( final String name )
throws ClassNotFoundException
1.9 +4 -4
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/property/DefaultPropertyResolver.java
Index: DefaultPropertyResolver.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/property/DefaultPropertyResolver.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- DefaultPropertyResolver.java 9 Apr 2002 02:26:34 -0000 1.8
+++ DefaultPropertyResolver.java 23 May 2002 01:50:25 -0000 1.9
@@ -24,7 +24,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Darrell DeBoer</a>
- * @version $Revision: 1.8 $ $Date: 2002/04/09 02:26:34 $
+ * @version $Revision: 1.9 $ $Date: 2002/05/23 01:50:25 $
*
* @ant.type type="property-resolver" name="default"
*/
@@ -54,7 +54,7 @@
* @param content the property to resolve
* @param context the context in which to resolve property
* @return the reolved property
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public Object resolveProperties( final String content,
final TaskContext context )
@@ -111,7 +111,7 @@
* @param content the property to resolve
* @param context the context in which to resolve property
* @return the reolved property
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
private Object recursiveResolveProperty( final String content,
final TaskContext context )
@@ -271,7 +271,7 @@
* @param propertyName the key of value in context
* @param context the set of known properties
* @return the object retrieved from context
- * @exception TaskException if the property is undefined
+ * @throws TaskException if the property is undefined
*/
protected Object getPropertyValue( final String propertyName,
final TaskContext context )
1.23 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/type/DefaultTypeManager.java
Index: DefaultTypeManager.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/components/type/DefaultTypeManager.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- DefaultTypeManager.java 10 May 2002 01:44:47 -0000 1.22
+++ DefaultTypeManager.java 23 May 2002 01:50:25 -0000 1.23
@@ -24,7 +24,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Darrell DeBoer</a>
- * @version $Revision: 1.22 $ $Date: 2002/05/10 01:44:47 $
+ * @version $Revision: 1.23 $ $Date: 2002/05/23 01:50:25 $
*/
public class DefaultTypeManager
implements TypeManager, Serviceable
@@ -137,7 +137,7 @@
*
* @param roleName the role name
* @return the Factory for interface
- * @exception TypeException role does not specify accessible work
interface
+ * @throws TypeException role does not specify accessible work interface
*/
private NamespaceAwareTypeFactory createFactory( final String roleName )
throws TypeException
1.2 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/BasicLogger.java
Index: BasicLogger.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/BasicLogger.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BasicLogger.java 14 Apr 2002 08:47:26 -0000 1.1
+++ BasicLogger.java 23 May 2002 01:50:25 -0000 1.2
@@ -14,7 +14,7 @@
* A basic logger that just prints out messages to <code>System.out</code>.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.1 $ $Date: 2002/04/14 08:47:26 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:25 $
*/
public class BasicLogger
extends AbstractLogger
@@ -96,7 +96,7 @@
*
* @param name the subname of this logger
* @return the new logger
- * @exception IllegalArgumentException if name has an empty element name
+ * @throws IllegalArgumentException if name has an empty element name
*/
public Logger getChildLogger( final String name )
{
1.3 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/builder/ModelBuilder.java
Index: ModelBuilder.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/builder/ModelBuilder.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ModelBuilder.java 21 May 2002 00:28:49 -0000 1.2
+++ ModelBuilder.java 23 May 2002 01:50:26 -0000 1.3
@@ -14,7 +14,7 @@
* Build a [EMAIL PROTECTED] ModelElement} tree from specified source.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.2 $ $Date: 2002/05/21 00:28:49 $
+ * @version $Revision: 1.3 $ $Date: 2002/05/23 01:50:26 $
* @ant.role name="model-builder"
*/
public interface ModelBuilder
@@ -27,7 +27,7 @@
*
* @param source the source of the project data.
* @return the ModelElement tree
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
ModelElement build( String source )
throws ModelException;
1.14 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/builder/ProjectBuilder.java
Index: ProjectBuilder.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/builder/ProjectBuilder.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ProjectBuilder.java 28 Apr 2002 05:04:49 -0000 1.13
+++ ProjectBuilder.java 23 May 2002 01:50:26 -0000 1.14
@@ -13,7 +13,7 @@
* Interface implemented by components that build projects from sources.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.13 $ $Date: 2002/04/28 05:04:49 $
+ * @version $Revision: 1.14 $ $Date: 2002/05/23 01:50:26 $
* @ant.role name="project-builder"
*/
public interface ProjectBuilder
@@ -26,7 +26,7 @@
*
* @param source the project file path.
* @return the constructed Project
- * @exception ProjectException if an error occurs
+ * @throws ProjectException if an error occurs
*/
Project build( String source )
throws ProjectException;
1.15 +4 -4
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/configurer/Configurer.java
Index: Configurer.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/configurer/Configurer.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- Configurer.java 24 Apr 2002 02:21:00 -0000 1.14
+++ Configurer.java 23 May 2002 01:50:26 -0000 1.15
@@ -15,7 +15,7 @@
* Class used to configure tasks.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.14 $ $Date: 2002/04/24 02:21:00 $
+ * @version $Revision: 1.15 $ $Date: 2002/05/23 01:50:26 $
* @ant.role name="configurer"
*/
public interface Configurer
@@ -31,7 +31,7 @@
* @param object the object
* @param model the model of the element
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
void configureElement( Object object, ModelElement model, TaskContext
context )
throws ModelException;
@@ -64,7 +64,7 @@
* @param clazz the Class object to use during configuration
* @param configuration the configuration
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
void configureElement( Object object,
Class clazz,
@@ -87,7 +87,7 @@
* @param name the attribute name
* @param value the attribute value
* @param context the Context
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
void configureAttribute( Object object,
Class clazz,
1.12 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/deployer/Deployer.java
Index: Deployer.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/deployer/Deployer.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- Deployer.java 9 May 2002 07:54:32 -0000 1.11
+++ Deployer.java 23 May 2002 01:50:26 -0000 1.12
@@ -16,7 +16,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Adam Murdoch</a>
- * @version $Revision: 1.11 $ $Date: 2002/05/09 07:54:32 $
+ * @version $Revision: 1.12 $ $Date: 2002/05/23 01:50:26 $
*/
public interface Deployer
{
@@ -30,7 +30,7 @@
* @param namespace The namespace to deploy into. Use null to deploy
into
* the default namespace.
* @return The deployer for this type library.
- * @exception DeploymentException if an error occurs.
+ * @throws DeploymentException if an error occurs.
*/
TypeLibraryDeployer createDeployer( Library library, String namespace )
throws DeploymentException;
1.10 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/executor/Executor.java
Index: Executor.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/executor/Executor.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- Executor.java 21 Apr 2002 01:54:28 -0000 1.9
+++ Executor.java 23 May 2002 01:50:26 -0000 1.10
@@ -14,7 +14,7 @@
* Engine inteface that should be implemented by all tasklet engines.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.9 $ $Date: 2002/04/21 01:54:28 $
+ * @version $Revision: 1.10 $ $Date: 2002/05/23 01:50:26 $
*/
public interface Executor
{
@@ -26,7 +26,7 @@
*
* @param task the configruation data for task
* @param frame The frame in which the task is executed.
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
void execute( ModelElement task, ExecutionFrame frame )
throws TaskException;
1.9 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/property/PropertyResolver.java
Index: PropertyResolver.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/property/PropertyResolver.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- PropertyResolver.java 24 Apr 2002 02:21:00 -0000 1.8
+++ PropertyResolver.java 23 May 2002 01:50:26 -0000 1.9
@@ -16,7 +16,7 @@
* String content.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Darrell DeBoer</a>
- * @version $Revision: 1.8 $ $Date: 2002/04/24 02:21:00 $
+ * @version $Revision: 1.9 $ $Date: 2002/05/23 01:50:26 $
*
* @ant.role name="property-resolver"
*/
@@ -33,7 +33,7 @@
* @param value the value to resolve, which may contain property
identifiers
* @param context the set of properties to resolve against.
* @return the resolved content
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
Object resolveProperties( final String value,
final TaskContext context )
1.7 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/type/TypeFactory.java
Index: TypeFactory.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/type/TypeFactory.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- TypeFactory.java 18 May 2002 04:07:08 -0000 1.6
+++ TypeFactory.java 23 May 2002 01:50:26 -0000 1.7
@@ -11,7 +11,7 @@
* Create an instance on name.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version CVS $Revision: 1.6 $ $Date: 2002/05/18 04:07:08 $
+ * @version CVS $Revision: 1.7 $ $Date: 2002/05/23 01:50:26 $
*/
public interface TypeFactory
{
@@ -29,7 +29,7 @@
*
* @param name the type name
* @return the type instance
- * @exception TypeException if the type is unknown, or an error occurs.
+ * @throws TypeException if the type is unknown, or an error occurs.
*/
Object create( String name )
throws TypeException;
1.18 +2 -2
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/launcher/Main.java
Index: Main.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/launcher/Main.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- Main.java 19 Apr 2002 12:08:50 -0000 1.17
+++ Main.java 23 May 2002 01:50:26 -0000 1.18
@@ -21,7 +21,7 @@
* Basic Loader that is responsible for all the hackery to get classloader
to work.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.17 $ $Date: 2002/04/19 12:08:50 $
+ * @version $Revision: 1.18 $ $Date: 2002/05/23 01:50:26 $
*/
public final class Main
{
@@ -29,7 +29,7 @@
* Magic entry point.
*
* @param args the CLI arguments
- * @exception Exception if an error occurs
+ * @throws Exception if an error occurs
*/
public static final void main( final String[] args )
throws Exception
1.6 +6 -6
jakarta-ant-myrmidon/framework/src/java/org/apache/myrmidon/framework/AbstractContainerTask.java
Index: AbstractContainerTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/java/org/apache/myrmidon/framework/AbstractContainerTask.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- AbstractContainerTask.java 11 May 2002 12:44:01 -0000 1.5
+++ AbstractContainerTask.java 23 May 2002 01:50:26 -0000 1.6
@@ -29,7 +29,7 @@
* This is the class that Task writers should extend to provide custom tasks.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.5 $ $Date: 2002/05/11 12:44:01 $
+ * @version $Revision: 1.6 $ $Date: 2002/05/23 01:50:26 $
*/
public abstract class AbstractContainerTask
extends AbstractTask
@@ -68,7 +68,7 @@
* @param to type to convert object to
* @param object the object to convert
* @return the converted object
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
protected final Object convert( final Class to, final Object object )
throws ModelException
@@ -89,7 +89,7 @@
*
* @param object the object
* @param element the configuration element
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
protected final void configureElement( final Object object,
final ModelElement element )
@@ -104,7 +104,7 @@
* @param object the object
* @param clazz the class to use when configuring element
* @param element the ModelElement
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
protected final void configureElement( final Object object,
final Class clazz,
@@ -120,7 +120,7 @@
* @param object the object
* @param name the attibute name
* @param value the attibute value
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
protected final void configureAttribute( final Object object,
final String name,
@@ -137,7 +137,7 @@
* @param clazz the class to use when configuring element
* @param name the attibute name
* @param value the attibute value
- * @exception ModelException if an error occurs
+ * @throws ModelException if an error occurs
*/
protected final void configureAttribute( final Object object,
final Class clazz,
1.2 +4 -4
jakarta-ant-myrmidon/framework/src/java/org/apache/myrmidon/framework/Pattern.java
Index: Pattern.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/java/org/apache/myrmidon/framework/Pattern.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Pattern.java 14 Apr 2002 09:30:13 -0000 1.1
+++ Pattern.java 23 May 2002 01:50:26 -0000 1.2
@@ -19,7 +19,7 @@
* Basic data type for holding patterns.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.1 $ $Date: 2002/04/14 09:30:13 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:26 $
* @ant.data-type name="pattern"
*/
public class Pattern
@@ -74,7 +74,7 @@
* Set if clause on pattern.
*
* @param condition the condition
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public void setIf( final String condition )
throws TaskException
@@ -87,7 +87,7 @@
* Set unless clause of pattern.
*
* @param condition the unless clause
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
public void setUnless( final String condition )
throws TaskException
@@ -128,7 +128,7 @@
* Utility method to make sure condition unset.
* Made so that it is not possible for both if and unless to be set.
*
- * @exception TaskException if an error occurs
+ * @throws TaskException if an error occurs
*/
private void verifyConditionNull()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Cab.java
Index: Cab.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Cab.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Cab.java 14 Apr 2002 09:31:48 -0000 1.1
+++ Cab.java 23 May 2002 01:50:26 -0000 1.2
@@ -271,7 +271,7 @@
*
* @param files Description of Parameter
* @return Description of the Returned Value
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
protected File createListFile( ArrayList files )
throws IOException
1.2 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/DependSet.java
Index: DependSet.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/DependSet.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DependSet.java 14 Apr 2002 09:31:48 -0000 1.1
+++ DependSet.java 23 May 2002 01:50:26 -0000 1.2
@@ -60,7 +60,7 @@
*
*
* @author <a href="mailto:[EMAIL PROTECTED]">Craeg Strong</a>
- * @version $Revision: 1.1 $ $Date: 2002/04/14 09:31:48 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:26 $
*/
public class DependSet extends MatchingTask
{
@@ -120,7 +120,7 @@
/**
* Executes the task.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Echo.java
Index: Echo.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Echo.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Echo.java 14 Apr 2002 09:31:48 -0000 1.1
+++ Echo.java 23 May 2002 01:50:26 -0000 1.2
@@ -69,7 +69,7 @@
/**
* Does the work.
*
- * @exception org.apache.myrmidon.api.TaskException if someting goes
wrong with the build
+ * @throws org.apache.myrmidon.api.TaskException if someting goes wrong
with the build
*/
public void execute()
throws TaskException
1.3 +4 -4
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Entry.java
Index: Entry.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Entry.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Entry.java 6 May 2002 09:29:44 -0000 1.2
+++ Entry.java 23 May 2002 01:50:26 -0000 1.3
@@ -120,7 +120,7 @@
/**
* Check if parameter combinations can be supported
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void checkParameters()
throws TaskException
@@ -151,7 +151,7 @@
* @param oldValue the current value read from the property file or
* <code>null</code> if the <code>key</code> was not contained in
* the property file.
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void executeDate( String oldValue )
throws TaskException
@@ -282,7 +282,7 @@
* @param oldValue the current value read from the property file or
* <code>null</code> if the <code>key</code> was not contained in
* the property file.
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void executeInteger( String oldValue )
throws TaskException
@@ -372,7 +372,7 @@
* @param oldValue the current value read from the property file or
* <code>null</code> if the <code>key</code> was not contained in
* the property file.
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void executeString( String oldValue )
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Get.java
Index: Get.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Get.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Get.java 14 Apr 2002 09:31:48 -0000 1.1
+++ Get.java 23 May 2002 01:50:26 -0000 1.2
@@ -121,7 +121,7 @@
/**
* Does the work.
*
- * @exception org.apache.myrmidon.api.TaskException Thrown in
unrecoverable error.
+ * @throws org.apache.myrmidon.api.TaskException Thrown in unrecoverable
error.
*/
public void execute()
throws TaskException
1.4 +3 -3
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/IContract.java
Index: IContract.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/IContract.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- IContract.java 18 May 2002 04:19:35 -0000 1.3
+++ IContract.java 23 May 2002 01:50:26 -0000 1.4
@@ -656,7 +656,7 @@
/**
* Executes the task
*
- * @exception org.apache.myrmidon.api.TaskException if the
instrumentation fails
+ * @throws org.apache.myrmidon.api.TaskException if the instrumentation
fails
*/
public void execute()
throws TaskException
@@ -853,7 +853,7 @@
/**
* Checks that the required attributes are set.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void preconditions()
throws TaskException
@@ -892,7 +892,7 @@
* Also creates a temporary file with a list of the source files, that
will
* be deleted upon exit.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void scan()
throws TaskException
1.4 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Javah.java
Index: Javah.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Javah.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Javah.java 6 May 2002 09:29:44 -0000 1.3
+++ Javah.java 23 May 2002 01:50:26 -0000 1.4
@@ -309,7 +309,7 @@
* Peforms a compile using the classic compiler that shipped with JDK 1.1
* and 1.2.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void doClassicCompile()
1.3 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/NetRexxC.java
Index: NetRexxC.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/NetRexxC.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- NetRexxC.java 20 Apr 2002 12:53:38 -0000 1.2
+++ NetRexxC.java 23 May 2002 01:50:26 -0000 1.3
@@ -473,7 +473,7 @@
/**
* Executes the task, i.e. does the actual compiler call
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void execute()
throws TaskException
@@ -635,7 +635,7 @@
/**
* Peforms a copmile using the NetRexx 1.1.x compiler
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void doNetRexxCompile()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Script.java
Index: Script.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/Script.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Script.java 14 Apr 2002 09:31:48 -0000 1.1
+++ Script.java 23 May 2002 01:50:26 -0000 1.2
@@ -81,7 +81,7 @@
/**
* Do the work.
*
- * @exception org.apache.myrmidon.api.TaskException if someting goes
wrong with the build
+ * @throws org.apache.myrmidon.api.TaskException if someting goes wrong
with the build
*/
public void execute()
throws TaskException
1.3 +3 -3
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/SQLExec.java
Index: SQLExec.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/SQLExec.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- SQLExec.java 6 May 2002 09:29:44 -0000 1.2
+++ SQLExec.java 23 May 2002 01:50:26 -0000 1.3
@@ -354,7 +354,7 @@
/**
* Load the sql file and then execute it
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void execute()
throws TaskException
@@ -595,7 +595,7 @@
*
* @param sql Description of Parameter
* @param out Description of Parameter
- * @exception java.sql.SQLException Description of Exception
+ * @throws java.sql.SQLException Description of Exception
*/
protected void execSQL( String sql, PrintStream out )
throws SQLException
@@ -645,7 +645,7 @@
* print any results in the statement.
*
* @param out Description of Parameter
- * @exception java.sql.SQLException Description of Exception
+ * @throws java.sql.SQLException Description of Exception
*/
protected void printResults( PrintStream out )
throws java.sql.SQLException
1.3 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/WaitFor.java
Index: WaitFor.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/WaitFor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- WaitFor.java 6 May 2002 09:29:44 -0000 1.2
+++ WaitFor.java 23 May 2002 01:50:26 -0000 1.3
@@ -108,7 +108,7 @@
* Check repeatedly for the specified conditions until they become true
or
* the timeout expires.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/archive/Expand.java
Index: Expand.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/archive/Expand.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Expand.java 14 Apr 2002 09:31:48 -0000 1.1
+++ Expand.java 23 May 2002 01:50:27 -0000 1.2
@@ -96,7 +96,7 @@
/**
* Do the work.
*
- * @exception org.apache.myrmidon.api.TaskException Thrown in
unrecoverable error.
+ * @throws org.apache.myrmidon.api.TaskException Thrown in unrecoverable
error.
*/
public void execute()
throws TaskException
1.3 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/archive/Jar.java
Index: Jar.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/archive/Jar.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Jar.java 6 May 2002 09:29:44 -0000 1.2
+++ Jar.java 23 May 2002 01:50:27 -0000 1.3
@@ -154,7 +154,7 @@
* @param zipFile intended archive file (may or may not exist)
* @return true if nothing need be done (may have done something
already);
* false if archive creation should proceed
- * @exception org.apache.myrmidon.api.TaskException if it likes
+ * @throws org.apache.myrmidon.api.TaskException if it likes
*/
protected boolean isUpToDate( FileScanner[] scanners, File zipFile )
throws TaskException
@@ -369,7 +369,7 @@
* updating
*
* @param is Description of Parameter
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
private void zipManifestEntry( InputStream is )
throws IOException, TaskException
1.3 +4 -4
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/archive/Zip.java
Index: Zip.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/archive/Zip.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Zip.java 6 May 2002 09:29:45 -0000 1.2
+++ Zip.java 23 May 2002 01:50:27 -0000 1.3
@@ -434,7 +434,7 @@
* @param zipFile intended archive file (may or may not exist)
* @return true if nothing need be done (may have done something
already);
* false if archive creation should proceed
- * @exception org.apache.myrmidon.api.TaskException if it likes
+ * @throws org.apache.myrmidon.api.TaskException if it likes
*/
protected boolean isUpToDate( FileScanner[] scanners, File zipFile )
throws TaskException
@@ -501,7 +501,7 @@
* @param zOut The feature to be added to the Files attribute
* @param prefix The feature to be added to the Files attribute
* @param fullpath The feature to be added to the Files attribute
- * @exception IOException Description of Exception
+ * @throws IOException Description of Exception
*/
protected void addFiles( FileScanner scanner, ZipOutputStream zOut,
String prefix, String fullpath )
@@ -572,7 +572,7 @@
*
* @param filesets The feature to be added to the Files attribute
* @param zOut The feature to be added to the Files attribute
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
protected void addFiles( ArrayList filesets, ZipOutputStream zOut )
throws IOException, TaskException
@@ -638,7 +638,7 @@
* @param entry The feature to be added to the ParentDirs attribute
* @param zOut The feature to be added to the ParentDirs attribute
* @param prefix The feature to be added to the ParentDirs attribute
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
protected void addParentDirs( File baseDir, String entry,
ZipOutputStream zOut, String prefix )
1.2 +4 -4
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/exec/ExecuteStreamHandler.java
Index: ExecuteStreamHandler.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/exec/ExecuteStreamHandler.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ExecuteStreamHandler.java 14 Apr 2002 09:31:49 -0000 1.1
+++ ExecuteStreamHandler.java 23 May 2002 01:50:27 -0000 1.2
@@ -25,7 +25,7 @@
*
* @param os output stream to write to the standard input stream of the
* subprocess
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
void setProcessInputStream( OutputStream os )
throws IOException;
@@ -34,7 +34,7 @@
* Install a handler for the error stream of the subprocess.
*
* @param is input stream to read from the error stream from the
subprocess
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
void setProcessErrorStream( InputStream is )
throws IOException;
@@ -43,7 +43,7 @@
* Install a handler for the output stream of the subprocess.
*
* @param is input stream to read from the error stream from the
subprocess
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
void setProcessOutputStream( InputStream is )
throws TaskException, IOException;
@@ -51,7 +51,7 @@
/**
* Start handling of the streams.
*
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
void start()
throws IOException;
1.2 +5 -5
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/i18n/Translate.java
Index: Translate.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/i18n/Translate.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Translate.java 14 Apr 2002 09:31:49 -0000 1.1
+++ Translate.java 23 May 2002 01:50:27 -0000 1.2
@@ -228,7 +228,7 @@
/**
* Check attributes values, load resource map and translate
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
@@ -319,7 +319,7 @@
* overwritten. Bundle's encoding scheme is used.
*
* @param ins Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private void loadResourceMap( FileInputStream ins )
throws TaskException
@@ -407,7 +407,7 @@
* located, it is treated just like a properties file but with bundle
* encoding also considered while loading.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private void loadResourceMaps()
throws TaskException
@@ -467,7 +467,7 @@
* @param bundleFile Description of Parameter
* @param i Description of Parameter
* @param checkLoaded Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private void processBundle( String bundleFile, int i,
boolean checkLoaded )
@@ -506,7 +506,7 @@
* if the source file or any associated bundle resource file is newer
than
* the destination file.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private void translate()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/CompilerAdapter.java
Index: CompilerAdapter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/CompilerAdapter.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CompilerAdapter.java 14 Apr 2002 09:31:49 -0000 1.1
+++ CompilerAdapter.java 23 May 2002 01:50:27 -0000 1.2
@@ -38,7 +38,7 @@
* Executes the task.
*
* @return has the compilation been successful
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
boolean execute()
throws TaskException;
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/Gcj.java
Index: Gcj.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/Gcj.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Gcj.java 14 Apr 2002 09:31:49 -0000 1.1
+++ Gcj.java 23 May 2002 01:50:27 -0000 1.2
@@ -26,7 +26,7 @@
* Performs a compile using the gcj compiler.
*
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean execute()
throws TaskException
1.3 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/Javac.java
Index: Javac.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/Javac.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Javac.java 6 May 2002 09:29:45 -0000 1.2
+++ Javac.java 23 May 2002 01:50:27 -0000 1.3
@@ -579,7 +579,7 @@
/**
* Executes the task.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/JavacExternal.java
Index: JavacExternal.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/JavacExternal.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- JavacExternal.java 14 Apr 2002 09:31:49 -0000 1.1
+++ JavacExternal.java 23 May 2002 01:50:27 -0000 1.2
@@ -24,7 +24,7 @@
* Performs a compile using the Javac externally.
*
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/Jikes.java
Index: Jikes.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/Jikes.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Jikes.java 14 Apr 2002 09:31:49 -0000 1.1
+++ Jikes.java 23 May 2002 01:50:27 -0000 1.2
@@ -35,7 +35,7 @@
* been successfully tested with jikes >1.10
*
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/Sj.java
Index: Sj.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/javac/Sj.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Sj.java 14 Apr 2002 09:31:49 -0000 1.1
+++ Sj.java 23 May 2002 01:50:27 -0000 1.2
@@ -25,7 +25,7 @@
* Performs a compile using the sj compiler from Symantec.
*
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
* @author [EMAIL PROTECTED]
*/
public boolean execute()
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/jsp/compilers/CompilerAdapter.java
Index: CompilerAdapter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/jsp/compilers/CompilerAdapter.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CompilerAdapter.java 14 Apr 2002 09:31:50 -0000 1.1
+++ CompilerAdapter.java 23 May 2002 01:50:27 -0000 1.2
@@ -39,7 +39,7 @@
* Executes the task.
*
* @return has the compilation been successful
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
boolean execute()
throws TaskException;
1.3 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/AggregateTransformer.java
Index: AggregateTransformer.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/AggregateTransformer.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- AggregateTransformer.java 6 May 2002 09:29:45 -0000 1.2
+++ AggregateTransformer.java 23 May 2002 01:50:27 -0000 1.3
@@ -123,7 +123,7 @@
* file directly. Much more for testing purposes.
*
* @param xmlfile xml file to be processed
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
protected void setXmlfile( File xmlfile )
throws TaskException
@@ -188,7 +188,7 @@
/**
* check for invalid options
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
protected void checkOptions()
throws TaskException
1.3 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/BriefJUnitResultFormatter.java
Index: BriefJUnitResultFormatter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/BriefJUnitResultFormatter.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- BriefJUnitResultFormatter.java 20 Apr 2002 12:53:38 -0000 1.2
+++ BriefJUnitResultFormatter.java 23 May 2002 01:50:27 -0000 1.3
@@ -134,7 +134,7 @@
* The whole testsuite ended.
*
* @param suite Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void endTestSuite( JUnitTest suite )
throws TaskException
@@ -212,7 +212,7 @@
* The whole testsuite started.
*
* @param suite Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void startTestSuite( JUnitTest suite )
throws TaskException
1.3 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/DOMElementWriter.java
Index: DOMElementWriter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/DOMElementWriter.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- DOMElementWriter.java 20 Apr 2002 12:53:38 -0000 1.2
+++ DOMElementWriter.java 23 May 2002 01:50:27 -0000 1.3
@@ -142,7 +142,7 @@
* @param indent number of
* @param indentWith strings, that should be used to indent the
* corresponding tag.
- * @exception IOException Description of Exception
+ * @throws IOException Description of Exception
*/
public void write( Element element, Writer out, int indent,
String indentWith )
1.2 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/JUnitResultFormatter.java
Index: JUnitResultFormatter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/JUnitResultFormatter.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- JUnitResultFormatter.java 14 Apr 2002 09:31:50 -0000 1.1
+++ JUnitResultFormatter.java 23 May 2002 01:50:27 -0000 1.2
@@ -22,7 +22,7 @@
* The whole testsuite started.
*
* @param suite Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
void startTestSuite( JUnitTest suite )
throws TaskException;
@@ -31,7 +31,7 @@
* The whole testsuite ended.
*
* @param suite Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
void endTestSuite( JUnitTest suite )
throws TaskException;
1.2 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/JUnitTask.java
Index: JUnitTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/JUnitTask.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- JUnitTask.java 14 Apr 2002 09:31:50 -0000 1.1
+++ JUnitTask.java 23 May 2002 01:50:27 -0000 1.2
@@ -347,7 +347,7 @@
/**
* Runs the testcase.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
@@ -463,7 +463,7 @@
* Run the tests.
*
* @param test Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
protected void execute( final JUnitTest test )
throws TaskException
1.3 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/JUnitTestRunner.java
Index: JUnitTestRunner.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/JUnitTestRunner.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- JUnitTestRunner.java 6 May 2002 09:29:45 -0000 1.2
+++ JUnitTestRunner.java 23 May 2002 01:50:27 -0000 1.3
@@ -337,7 +337,7 @@
*
*
* @param args The command line arguments
- * @exception IOException Description of Exception
+ * @throws IOException Description of Exception
*/
public static void main( String[] args )
throws IOException, TaskException
@@ -407,7 +407,7 @@
* )?
*
* @param line Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private static void createAndStoreFormatter( String line )
throws TaskException
1.3 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/SummaryJUnitResultFormatter.java
Index: SummaryJUnitResultFormatter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/SummaryJUnitResultFormatter.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- SummaryJUnitResultFormatter.java 20 Apr 2002 12:53:38 -0000 1.2
+++ SummaryJUnitResultFormatter.java 23 May 2002 01:50:27 -0000 1.3
@@ -114,7 +114,7 @@
* The whole testsuite ended.
*
* @param suite Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void endTestSuite( JUnitTest suite )
throws TaskException
1.2 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/XalanExecutor.java
Index: XalanExecutor.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/XalanExecutor.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- XalanExecutor.java 14 Apr 2002 09:31:50 -0000 1.1
+++ XalanExecutor.java 23 May 2002 01:50:27 -0000 1.2
@@ -90,7 +90,7 @@
* get the appropriate stream based on the format (frames/noframes)
*
* @return The OutputStream value
- * @exception IOException Description of Exception
+ * @throws IOException Description of Exception
*/
protected OutputStream getOutputStream()
throws IOException
@@ -110,7 +110,7 @@
/**
* override to perform transformation
*
- * @exception Exception Description of Exception
+ * @throws Exception Description of Exception
*/
abstract void execute()
throws Exception;
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/XMLJUnitResultFormatter.java
Index: XMLJUnitResultFormatter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/junit/XMLJUnitResultFormatter.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- XMLJUnitResultFormatter.java 14 Apr 2002 09:31:50 -0000 1.1
+++ XMLJUnitResultFormatter.java 23 May 2002 01:50:27 -0000 1.2
@@ -145,7 +145,7 @@
* The whole testsuite ended.
*
* @param suite Description of Parameter
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void endTestSuite( JUnitTest suite )
throws TaskException
1.2 +2 -2
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/manifest/ManifestTask.java
Index: ManifestTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/manifest/ManifestTask.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ManifestTask.java 14 Apr 2002 09:31:51 -0000 1.1
+++ ManifestTask.java 23 May 2002 01:50:27 -0000 1.2
@@ -26,7 +26,7 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @author Conor MacNeill
* @author <a href="mailto:[EMAIL PROTECTED]">Stefan Bodewig</a>
- * @version $Revision: 1.1 $ $Date: 2002/04/14 09:31:51 $
+ * @version $Revision: 1.2 $ $Date: 2002/05/23 01:50:27 $
*/
public class ManifestTask
extends AbstractTask
@@ -121,7 +121,7 @@
/**
* Create or update the Manifest when used as a task.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void execute()
throws TaskException
1.3 +14 -14
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/net/FTP.java
Index: FTP.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/net/FTP.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FTP.java 6 May 2002 09:29:45 -0000 1.2
+++ FTP.java 23 May 2002 01:50:27 -0000 1.3
@@ -102,7 +102,7 @@
* "mkdir" and "list".
*
* @param action The new Action value
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void setAction( Action action )
throws TaskException
@@ -148,7 +148,7 @@
* other actions.
*
* @param listing The new Listing value
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void setListing( File listing )
throws TaskException
@@ -277,7 +277,7 @@
/**
* Runs the task.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
@@ -390,8 +390,8 @@
* @param ftp Description of Parameter
* @param dir Description of Parameter
* @param filename Description of Parameter
- * @exception IOException Description of Exception
- * @exception TaskException Description of Exception
+ * @throws IOException Description of Exception
+ * @throws TaskException Description of Exception
*/
protected void getFile( FTPClient ftp, String dir, String filename )
throws IOException, TaskException
@@ -503,7 +503,7 @@
/**
* Checks to see that all required parameters are set.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private void validate()
throws TaskException
@@ -631,8 +631,8 @@
*
* @param ftp The FTP client connection
* @param dir The directory to create (format must be correct for host
type)
- * @exception IOException Description of Exception
- * @exception TaskException Description of Exception
+ * @throws IOException Description of Exception
+ * @throws TaskException Description of Exception
*/
protected void makeRemoteDir( FTPClient ftp, String dir )
throws IOException, TaskException
@@ -697,8 +697,8 @@
* @param ftp Description of Parameter
* @param dir Description of Parameter
* @param filename Description of Parameter
- * @exception IOException Description of Exception
- * @exception TaskException Description of Exception
+ * @throws IOException Description of Exception
+ * @throws TaskException Description of Exception
*/
protected void sendFile( FTPClient ftp, final String dir, final String
filename )
throws IOException, TaskException
@@ -768,8 +768,8 @@
* @param ftp Description of Parameter
* @param fs Description of Parameter
* @return Description of the Returned Value
- * @exception IOException Description of Exception
- * @exception TaskException Description of Exception
+ * @throws IOException Description of Exception
+ * @throws TaskException Description of Exception
*/
protected int transferFiles( FTPClient ftp, FileSet fs )
throws IOException, TaskException
@@ -863,8 +863,8 @@
* server.
*
* @param ftp Description of Parameter
- * @exception IOException Description of Exception
- * @exception TaskException Description of Exception
+ * @throws IOException Description of Exception
+ * @throws TaskException Description of Exception
*/
protected void transferFiles( FTPClient ftp )
throws IOException, TaskException
1.2 +4 -4
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/net/MimeMail.java
Index: MimeMail.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/net/MimeMail.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MimeMail.java 14 Apr 2002 09:31:51 -0000 1.1
+++ MimeMail.java 23 May 2002 01:50:27 -0000 1.2
@@ -246,9 +246,9 @@
/**
* here is where the mail is sent
*
- * @exception MessagingException Description of Exception
- * @exception AddressException Description of Exception
- * @exception TaskException Description of Exception
+ * @throws MessagingException Description of Exception
+ * @throws AddressException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void doMail()
throws MessagingException, AddressException, TaskException
@@ -346,7 +346,7 @@
* Executes this build task. throws org.apache.tools.ant.TaskException if
* there is an error during task execution.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/rmic/RmicAdapter.java
Index: RmicAdapter.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/rmic/RmicAdapter.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- RmicAdapter.java 14 Apr 2002 09:31:51 -0000 1.1
+++ RmicAdapter.java 23 May 2002 01:50:28 -0000 1.2
@@ -40,7 +40,7 @@
* Executes the task.
*
* @return has the compilation been successful
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
boolean execute()
throws TaskException;
1.3 +6 -6
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/FixCRLF.java
Index: FixCRLF.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/FixCRLF.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FixCRLF.java 6 May 2002 09:29:45 -0000 1.2
+++ FixCRLF.java 23 May 2002 01:50:28 -0000 1.3
@@ -70,7 +70,7 @@
*
* @author Sam Ruby <a href="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Peter B. West</a>
- * @version $Revision: 1.2 $ $Name: $
+ * @version $Revision: 1.3 $ $Name: $
*/
public class FixCRLF
extends MatchingTask
@@ -269,7 +269,7 @@
* Specify tab length in characters
*
* @param tlength specify the length of tab in spaces,
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void setTablength( int tlength )
throws TaskException
@@ -290,7 +290,7 @@
/**
* Executes the task.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void execute()
throws TaskException
@@ -345,7 +345,7 @@
*
* @param f Description of Parameter
* @return The Reader value
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
private Reader getReader( File f )
throws IOException
@@ -361,7 +361,7 @@
*
* @param bufline Description of Parameter
* @param terminator Description of Parameter
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void endOfCharConst( OneLiner.BufferLine bufline, char
terminator )
throws TaskException
@@ -397,7 +397,7 @@
* next eol character.
*
* @param bufline Description of Parameter
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void nextStateChange( OneLiner.BufferLine bufline )
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/Native2Ascii.java
Index: Native2Ascii.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/Native2Ascii.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Native2Ascii.java 14 Apr 2002 09:31:52 -0000 1.1
+++ Native2Ascii.java 23 May 2002 01:50:28 -0000 1.2
@@ -162,7 +162,7 @@
*
* @param srcName Description of Parameter
* @param destName Description of Parameter
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void convert( String srcName, String destName )
throws TaskException
1.3 +4 -4
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/Replace.java
Index: Replace.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/Replace.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Replace.java 20 Apr 2002 12:53:38 -0000 1.2
+++ Replace.java 23 May 2002 01:50:28 -0000 1.3
@@ -191,7 +191,7 @@
/**
* Do the execution.
*
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public void execute()
throws TaskException
@@ -233,7 +233,7 @@
/**
* Validate attributes provided for this task in .xml build file.
*
- * @exception org.apache.myrmidon.api.TaskException if any supplied
attribute is invalid or any
+ * @throws org.apache.myrmidon.api.TaskException if any supplied
attribute is invalid or any
* mandatory attribute is missing
*/
public void validateAttributes()
@@ -265,7 +265,7 @@
/**
* Validate nested elements.
*
- * @exception org.apache.myrmidon.api.TaskException if any supplied
attribute is invalid or any
+ * @throws org.apache.myrmidon.api.TaskException if any supplied
attribute is invalid or any
* mandatory attribute is missing
*/
public void validateReplacefilters()
@@ -283,7 +283,7 @@
* on a temporary file which then replaces the original file.
*
* @param src the source file
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
private void processFile( File src )
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/ReplaceRegExp.java
Index: ReplaceRegExp.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/ReplaceRegExp.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ReplaceRegExp.java 14 Apr 2002 09:31:52 -0000 1.1
+++ ReplaceRegExp.java 23 May 2002 01:50:28 -0000 1.2
@@ -280,7 +280,7 @@
*
* @param f Description of Parameter
* @param options Description of Parameter
- * @exception java.io.IOException Description of Exception
+ * @throws java.io.IOException Description of Exception
*/
protected void doReplace( File f, int options )
throws IOException, TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/vss/MSVSSGET.java
Index: MSVSSGET.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/vss/MSVSSGET.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MSVSSGET.java 14 Apr 2002 09:31:52 -0000 1.1
+++ MSVSSGET.java 23 May 2002 01:50:28 -0000 1.2
@@ -462,7 +462,7 @@
* Builds a command line to execute ss and then calls Exec's run method
to
* execute the command line.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
1.3 +4 -4
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/vss/MSVSSHISTORY.java
Index: MSVSSHISTORY.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/vss/MSVSSHISTORY.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- MSVSSHISTORY.java 6 May 2002 09:29:45 -0000 1.2
+++ MSVSSHISTORY.java 23 May 2002 01:50:28 -0000 1.3
@@ -217,7 +217,7 @@
* Builds a command line to execute ss and then calls Exec's run method
to
* execute the command line.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
@@ -288,7 +288,7 @@
* Builds the version date command.
*
* @param cmd the commandline the command is to be added to
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private void getVersionDateCommand( ArgumentList cmd )
throws TaskException
@@ -347,7 +347,7 @@
* Builds the version date command.
*
* @param cmd the commandline the command is to be added to
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
private void getVersionLabelCommand( ArgumentList cmd )
throws TaskException
@@ -379,7 +379,7 @@
* @param fromDate Description of Parameter
* @param numDays Description of Parameter
* @return Description of the Returned Value
- * @exception ParseException Description of Exception
+ * @throws ParseException Description of Exception
*/
private String calcDate( String fromDate, int numDays )
throws ParseException
1.3 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/vss/MSVSSLABEL.java
Index: MSVSSLABEL.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/vss/MSVSSLABEL.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- MSVSSLABEL.java 6 May 2002 09:29:45 -0000 1.2
+++ MSVSSLABEL.java 23 May 2002 01:50:28 -0000 1.3
@@ -318,7 +318,7 @@
* Builds a command line to execute ss and then calls Exec's run method
to
* execute the command line.
*
- * @exception TaskException Description of Exception
+ * @throws TaskException Description of Exception
*/
public void execute()
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/types/EnumeratedAttribute.java
Index: EnumeratedAttribute.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/types/EnumeratedAttribute.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- EnumeratedAttribute.java 14 Apr 2002 09:31:52 -0000 1.1
+++ EnumeratedAttribute.java 23 May 2002 01:50:28 -0000 1.2
@@ -26,7 +26,7 @@
* IntrospectionHelper}.
*
* @param value The new Value value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public final void setValue( final String value )
throws TaskException
1.2 +5 -5
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/JakartaOroMatcher.java
Index: JakartaOroMatcher.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/JakartaOroMatcher.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- JakartaOroMatcher.java 14 Apr 2002 09:31:53 -0000 1.1
+++ JakartaOroMatcher.java 23 May 2002 01:50:28 -0000 1.2
@@ -49,7 +49,7 @@
*
* @param argument Description of Parameter
* @return The Groups value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public ArrayList getGroups( String argument )
throws TaskException
@@ -66,7 +66,7 @@
* @param input Description of Parameter
* @param options Description of Parameter
* @return The Groups value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public ArrayList getGroups( String input, int options )
throws TaskException
@@ -100,7 +100,7 @@
*
* @param argument Description of Parameter
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean matches( String argument )
throws TaskException
@@ -114,7 +114,7 @@
* @param input Description of Parameter
* @param options Description of Parameter
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean matches( String input, int options )
throws TaskException
@@ -128,7 +128,7 @@
*
* @param options Description of Parameter
* @return The CompiledPattern value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
protected Pattern getCompiledPattern( int options )
throws TaskException
1.2 +3 -3
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/JakartaRegexpMatcher.java
Index: JakartaRegexpMatcher.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/JakartaRegexpMatcher.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- JakartaRegexpMatcher.java 14 Apr 2002 09:31:53 -0000 1.1
+++ JakartaRegexpMatcher.java 23 May 2002 01:50:28 -0000 1.2
@@ -42,7 +42,7 @@
*
* @param argument Description of Parameter
* @return The Groups value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public ArrayList getGroups( String argument )
throws TaskException
@@ -82,7 +82,7 @@
*
* @param argument Description of Parameter
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean matches( String argument )
throws TaskException
@@ -96,7 +96,7 @@
* @param input Description of Parameter
* @param options Description of Parameter
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean matches( String input, int options )
throws TaskException
1.2 +4 -4
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/Jdk14RegexpMatcher.java
Index: Jdk14RegexpMatcher.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/Jdk14RegexpMatcher.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Jdk14RegexpMatcher.java 14 Apr 2002 09:31:53 -0000 1.1
+++ Jdk14RegexpMatcher.java 23 May 2002 01:50:28 -0000 1.2
@@ -47,7 +47,7 @@
*
* @param argument Description of Parameter
* @return The Groups value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public ArrayList getGroups( String argument )
throws TaskException
@@ -64,7 +64,7 @@
* @param input Description of Parameter
* @param options Description of Parameter
* @return The Groups value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public ArrayList getGroups( String input, int options )
throws TaskException
@@ -99,7 +99,7 @@
*
* @param argument Description of Parameter
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean matches( String argument )
throws TaskException
@@ -113,7 +113,7 @@
* @param input Description of Parameter
* @param options Description of Parameter
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public boolean matches( String input, int options )
throws TaskException
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/Regexp.java
Index: Regexp.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/Regexp.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Regexp.java 14 Apr 2002 09:31:53 -0000 1.1
+++ Regexp.java 23 May 2002 01:50:28 -0000 1.2
@@ -36,7 +36,7 @@
* @param options The list of options for the match and replace. See the
* MATCH_ and REPLACE_ constants above.
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
String substitute( String input, String argument, int options )
throws TaskException;
1.2 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/RegexpFactory.java
Index: RegexpFactory.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/RegexpFactory.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- RegexpFactory.java 14 Apr 2002 09:31:53 -0000 1.1
+++ RegexpFactory.java 23 May 2002 01:50:28 -0000 1.2
@@ -17,7 +17,7 @@
*
* @author Matthew Inger <a href="mailto:[EMAIL PROTECTED]">
* [EMAIL PROTECTED]</a>
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public class RegexpFactory
extends RegexpMatcherFactory
@@ -70,7 +70,7 @@
*
* @param classname Description of Parameter
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
* @since 1.3
*/
private Regexp createRegexpInstance( final String classname )
1.2 +6 -6
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/RegexpMatcher.java
Index: RegexpMatcher.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/RegexpMatcher.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- RegexpMatcher.java 14 Apr 2002 09:31:53 -0000 1.1
+++ RegexpMatcher.java 23 May 2002 01:50:28 -0000 1.2
@@ -44,7 +44,7 @@
* Set the regexp pattern from the String description.
*
* @param pattern The new Pattern value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
void setPattern( String pattern )
throws TaskException;
@@ -53,7 +53,7 @@
* Get a String representation of the regexp pattern
*
* @return The Pattern value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
String getPattern()
throws TaskException;
@@ -63,7 +63,7 @@
*
* @param argument Description of Parameter
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
boolean matches( String argument )
throws TaskException;
@@ -76,7 +76,7 @@
*
* @param argument Description of Parameter
* @return The Groups value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
ArrayList getGroups( String argument )
throws TaskException;
@@ -88,7 +88,7 @@
* @param options The list of options for the match. See the MATCH_
* constants above.
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
boolean matches( String input, int options )
throws TaskException;
@@ -101,7 +101,7 @@
* @param options The list of options for the match. See the MATCH_
* constants above.
* @return The Groups value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
ArrayList getGroups( String input, int options )
throws TaskException;
1.3 +1 -1
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/RegexpMatcherFactory.java
Index: RegexpMatcherFactory.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/regexp/RegexpMatcherFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- RegexpMatcherFactory.java 6 May 2002 09:29:46 -0000 1.2
+++ RegexpMatcherFactory.java 23 May 2002 01:50:28 -0000 1.3
@@ -31,7 +31,7 @@
*
* @param p Project whose ant.regexp.regexpimpl property will be used.
* @return Description of the Returned Value
- * @exception org.apache.myrmidon.api.TaskException Description of
Exception
+ * @throws org.apache.myrmidon.api.TaskException Description of Exception
*/
public RegexpMatcher newRegexpMatcher()
throws TaskException
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>