More typos...

-- Larry

Index: src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.java,v
retrieving revision 1.45
diff -u -r1.45 EjbJar.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.java     19 Jul 
2003 11:20:16 -0000      1.45
+++ src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.java     22 Sep 
2003 14:52:13 -0000
@@ -170,7 +170,7 @@
     public static class NamingScheme extends EnumeratedAttribute {
         /**
          * Naming scheme where generated jar is determined from the ejb-name in
-         * the deployment descripor
+         * the deployment descriptor
          */
         public static final String EJB_NAME = "ejb-name";
 
@@ -228,7 +228,7 @@
      * Stores a handle to the directory to put the Jar files in. This is
      * only used by the generic deployment descriptor tool which is created
      * if no other deployment descriptor tools are provided. Normally each
-     * deployment tool will specify the desitination dir itself.
+     * deployment tool will specify the destination dir itself.
      */
     private File destDir;
 
@@ -537,7 +537,7 @@
 
     /**
      * Set the suffix for the generated jar file. When generic jars are
-     * generated, they have a suffix which is appended to the the bean name
+     * generated, they have a suffix which is appended to the bean name
      * to create the name of the jar file. Note that this suffix includes
      * the extension fo te jar file and should therefore end with an
      * appropriate extension such as .jar or .ear
Index: src/main/org/apache/tools/ant/taskdefs/optional/ejb/Ejbc.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/Ejbc.java,v
retrieving revision 1.25
diff -u -r1.25 Ejbc.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ejb/Ejbc.java       19 Jul 
2003 11:20:16 -0000      1.25
+++ src/main/org/apache/tools/ant/taskdefs/optional/ejb/Ejbc.java       22 Sep 
2003 14:52:13 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2000,2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2000,2002-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -70,7 +70,7 @@
  */
 public class Ejbc extends MatchingTask {
     /**
-     * The root directory of the tree containing the serialised deployment 
desciptors. The actual
+     * The root directory of the tree containing the serialised deployment 
descriptors. The actual
      * deployment descriptor files are selected using include and exclude 
constructs
      * on the ejbc task provided by the MatchingTask superclass.
      */
@@ -109,7 +109,7 @@
      * interfaces to be available in the classpath, this also avoids having to
      * start ant with the class path of the project it is building.
      *
-     * @exception BuildException if someting goes wrong with the build
+     * @exception BuildException if something goes wrong with the build
      */
     public void execute() throws BuildException {
         if (descriptorDirectory == null
@@ -198,7 +198,7 @@
      * Set the name of the generated manifest file.
      *
      * For each EJB that is processed an entry is created in this file. This 
can then be used
-     * to create a jar file for dploying the beans.
+     * to create a jar file for deploying the beans.
      *
      * @param manifestFilename the name of the manifest file to be generated.
      */
@@ -217,7 +217,7 @@
      * Set the directory containing the source code for the home interface, 
remote interface
      * and public key class definitions.
      *
-     * @param dirName the directory containg the source tree for the EJB's 
interface classes.
+     * @param dirName the directory containing the source tree for the EJB's 
interface classes.
      */
     public void setSrc(String dirName) {
         sourceDirectory = new File(dirName);
Index: src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbcHelper.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbcHelper.java,v
retrieving revision 1.21
diff -u -r1.21 EjbcHelper.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbcHelper.java 19 Jul 
2003 11:20:17 -0000      1.21
+++ src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbcHelper.java 22 Sep 
2003 14:52:13 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -74,7 +74,7 @@
  */
 public class EjbcHelper {
     /**
-     * The root directory of the tree containing the serialised deployment 
desciptors.
+     * The root directory of the tree containing the serialised deployment 
descriptors.
      */
     private File descriptorDirectory;
 
@@ -201,7 +201,7 @@
             File beanStubClass
                 = new File(generatedFilesDirectory, beanClassBase + 
"EOImpl_WLStub.class");
 
-            // if the implementation classes don;t exist regenerate
+            // if the implementation classes don't exist regenerate
             if (!ejbImplentationClass.exists()
                 || !homeImplementationClass.exists()
                 || !beanStubClass.exists()) {
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/GenericDeploymentTool.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/GenericDeploymentTool.java,v
retrieving revision 1.47
diff -u -r1.47 GenericDeploymentTool.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/GenericDeploymentTool.java  
    19 Jul 2003 11:20:17 -0000      1.47
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/GenericDeploymentTool.java  
    22 Sep 2003 14:52:14 -0000
@@ -118,7 +118,7 @@
 
     /**
      * The configuration from the containing task. This config combined
-     * with the settings of the individual attributes here constitues the
+     * with the settings of the individual attributes here constitutes the
      * complete config for this deployment tool.
      */
     private EjbJar.Config config;
@@ -421,7 +421,7 @@
         try {
             handler = getDescriptorHandler(config.srcDir);
 
-            // Retrive the files to be added to JAR from EJB descriptor
+            // Retrieve the files to be added to JAR from EJB descriptor
             Hashtable ejbFiles = parseEjbFiles(descriptorFileName, saxParser);
 
             // Add any support classes specified in the build file
@@ -741,12 +741,12 @@
     }
 
     /**
-     * Get the manifets file to use for building the generic jar.
+     * Get the manifest file to use for building the generic jar.
      *
      * If the file does not exist the global manifest from the config is used
      * otherwise the default Ant manifest will be used.
      *
-     * @param prefix the prefix where to llook for the manifest file based on
+     * @param prefix the prefix where to look for the manifest file based on
      *        the naming convention.
      *
      * @return the manifest file or null if the manifest file does not exist
Index: src/main/org/apache/tools/ant/taskdefs/optional/ejb/IPlanetEjbc.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/IPlanetEjbc.java,v
retrieving revision 1.16
diff -u -r1.16 IPlanetEjbc.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ejb/IPlanetEjbc.java        
24 Jul 2003 13:48:16 -0000      1.16
+++ src/main/org/apache/tools/ant/taskdefs/optional/ejb/IPlanetEjbc.java        
22 Sep 2003 14:52:14 -0000
@@ -444,7 +444,7 @@
             args.append(arguments[i]).append(" ");
         }
 
-        /* If an iAS home directory is specified, prepend it to the commmand */
+        /* If an iAS home directory is specified, prepend it to the command */
         String command;
         if (iasHomeDir == null) {
             command = "";
Index: src/main/org/apache/tools/ant/taskdefs/optional/ejb/IPlanetEjbcTask.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/IPlanetEjbcTask.java,v
retrieving revision 1.12
diff -u -r1.12 IPlanetEjbcTask.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ejb/IPlanetEjbcTask.java    
10 Feb 2003 14:13:49 -0000      1.12
+++ src/main/org/apache/tools/ant/taskdefs/optional/ejb/IPlanetEjbcTask.java    
22 Sep 2003 14:52:14 -0000
@@ -246,7 +246,7 @@
         }
 
         if (iasdescriptor == null) {
-            String msg = "The iAS-speific XML descriptor must be specified 
using"
+            String msg = "The iAS-specific XML descriptor must be specified 
using"
                             + " the \"iasdescriptor\" attribute.";
             throw new BuildException(msg, getLocation());
         }
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/JonasDeploymentTool.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/JonasDeploymentTool.java,v
retrieving revision 1.11
diff -u -r1.11 JonasDeploymentTool.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/JonasDeploymentTool.java    
    6 Jul 2003 09:03:18 -0000       1.11
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/JonasDeploymentTool.java    
    22 Sep 2003 14:52:14 -0000
@@ -760,28 +760,28 @@
 
         // jonasroot
         if (jonasroot == null) {
-            throw new BuildException("The jonasroot attribut is not set.");
+            throw new BuildException("The jonasroot attribute is not set.");
         } else if (!jonasroot.isDirectory()) {
-            throw new BuildException("The jonasroot attribut '" + jonasroot
+            throw new BuildException("The jonasroot attribute '" + jonasroot
                 + "' is not a valid directory.");
         }
 
         // orb
         if (orb != null && !orb.equals(RMI_ORB) && !orb.equals(JEREMIE_ORB)
             && !orb.equals(DAVID_ORB)) {
-            throw new BuildException("The orb attribut '" + orb
+            throw new BuildException("The orb attribute '" + orb
                 + "' is not valid (must be either "
                 + RMI_ORB + ", " + JEREMIE_ORB + " or " + DAVID_ORB + ").");
         }
 
         // additionalargs
         if (additionalargs != null && additionalargs.equals("")) {
-            throw new BuildException("Empty additionalargs attribut.");
+            throw new BuildException("Empty additionalargs attribute.");
         }
 
         // javac
         if (javac != null && javac.equals("")) {
-            throw new BuildException("Empty javac attribut.");
+            throw new BuildException("Empty javac attribute.");
         }
     }
 
@@ -805,7 +805,7 @@
     }
 
     /**
-     * Delete a file. If the file is a directory, delete recursivly all the
+     * Delete a file. If the file is a directory, delete recursively all the
      * files inside.
      *
      * @param aFile file to delete.
@@ -823,7 +823,7 @@
 
     /**
      * Add a file to the a given hashtable. If the file is a directory, add
-     * recursivly all the files inside to the hashtable.
+     * recursively all the files inside to the hashtable.
      *
      * @param file the file to add.
      * @param rootDir the current sub-directory to scan.
Index: src/main/org/apache/tools/ant/taskdefs/optional/ejb/WLRun.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WLRun.java,v
retrieving revision 1.25
diff -u -r1.25 WLRun.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ejb/WLRun.java      19 Jul 
2003 11:20:17 -0000      1.25
+++ src/main/org/apache/tools/ant/taskdefs/optional/ejb/WLRun.java      22 Sep 
2003 14:52:15 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -88,7 +88,7 @@
     private String weblogicMainClass = "weblogic.Server";
 
     /**
-     * Addional arguments to pass to the JVM used to run weblogic
+     * Additional arguments to pass to the JVM used to run weblogic
      */
     private String additionalArgs = "";
 
@@ -140,7 +140,7 @@
     private String managementPassword = null;
 
     /**
-     * The provate key password - used for SSL
+     * The private key password - used for SSL
      */
     private String pkPassword = null;
 
@@ -173,7 +173,7 @@
      * interfaces to be available in the classpath, this also avoids having to
      * start ant with the class path of the project it is building.
      *
-     * @exception BuildException if someting goes wrong with the build
+     * @exception BuildException if something goes wrong with the build
      */
     public void execute() throws BuildException {
         if (weblogicSystemHome == null) {
@@ -372,7 +372,7 @@
 
     /**
      * The name of the weblogic server within the weblogic home which is to be 
run.
-     * Optiona, defaults to "myserver"
+     * Optional, defaults to "myserver"
      *
      * @param serverName the name of the server.
      */
@@ -423,7 +423,7 @@
     /**
      * Set the management password of the server;
      * optional and only applicable to WL6.0.
-     * @param password the management pasword of the server.
+     * @param password the management password of the server.
      */
     public void setPassword(String password) {
         this.managementPassword = password;
Index: src/main/org/apache/tools/ant/taskdefs/optional/ejb/WLStop.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WLStop.java,v
retrieving revision 1.16
diff -u -r1.16 WLStop.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ejb/WLStop.java     19 Jul 
2003 08:11:03 -0000      1.16
+++ src/main/org/apache/tools/ant/taskdefs/optional/ejb/WLStop.java     22 Sep 
2003 14:52:15 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -105,7 +105,7 @@
      * The work is actually done by creating a separate JVM to run the 
weblogic admin task
      * This approach allows the classpath of the helper task to be set.
      *
-     * @exception BuildException if someting goes wrong with the build
+     * @exception BuildException if something goes wrong with the build
      */
     public void execute() throws BuildException {
         if (username == null || password == null) {
@@ -191,7 +191,7 @@
      * Set the delay (in seconds) before shutting down the server;
      * optional.
      *
-     * @param s the selay.
+     * @param s the delay.
      */
     public void setDelay(String s) {
         delay = Integer.parseInt(s);
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java,v
retrieving revision 1.52
diff -u -r1.52 WeblogicDeploymentTool.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java 
    19 Jul 2003 11:20:17 -0000      1.52
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java 
    22 Sep 2003 14:52:15 -0000
@@ -681,12 +681,12 @@
      *
      * The way weblogic ejbc works is it creates wrappers for the publicly
      * defined methods as they are exposed in the remote interface. If the
-     * actual bean changes without changing the the method signatures then
+     * actual bean changes without changing the method signatures then
      * only the bean classfile needs to be updated and the rest of the
      * weblogic jar file can remain the same. If the Interfaces, ie. the
      * method signatures change or if the xml deployment descriptors changed,
      * the whole jar needs to be rebuilt with ejbc. This is not strictly true
-     * for the xml files. If the JNDI name changes then the jar doesnt have to
+     * for the xml files. If the JNDI name changes then the jar doesn't have to
      * be rebuild, but if the resources references change then it does. At
      * this point the weblogic jar gets rebuilt if the xml files change at
      * all.
@@ -778,7 +778,7 @@
                             }
                         }
                     } else {
-                        // a file doesnt exist rebuild
+                        // a file doesn't exist rebuild
 
                         log("File " + filepath + " not present in weblogic 
jar",
                             Project.MSG_VERBOSE);
@@ -819,7 +819,7 @@
                             je = (JarEntry) replaceEntries.get(je.getName());
                             is = genericJar.getInputStream(je);
                         } else {
-                            //use fle from original weblogic jar
+                            //use file from original weblogic jar
 
                             is = wlJar.getInputStream(je);
                         }
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WebsphereDeploymentTool.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WebsphereDeploymentTool.java,v
retrieving revision 1.25
diff -u -r1.25 WebsphereDeploymentTool.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WebsphereDeploymentTool.java
    19 Jul 2003 11:20:17 -0000      1.25
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WebsphereDeploymentTool.java
    22 Sep 2003 14:52:15 -0000
@@ -341,7 +341,7 @@
 
 
     /**
-     * Decide, wether ejbdeploy should be called or not;
+     * Decide, whether ejbdeploy should be called or not;
      * optional, default true.
      *
      * @param ejbdeploy
@@ -488,7 +488,7 @@
                     log("Unable to locate the websphere Schema: "
                         + websphereSchema.getPath(), Project.MSG_VERBOSE);
                 }
-                // Theres nothing else to see here...keep moving sonny
+                // There's nothing else to see here...keep moving sonny
             } catch (Exception e) {
                 String msg = "Exception while adding Vendor specific files: "
                     + e.toString();
@@ -689,12 +689,12 @@
      *
      * The way websphere ejbdeploy works is it creates wrappers for the
      * publicly defined methods as they are exposed in the remote interface.
-     * If the actual bean changes without changing the the method signatures
+     * If the actual bean changes without changing the method signatures
      * then only the bean classfile needs to be updated and the rest of the
      * websphere jar file can remain the same. If the Interfaces, ie. the
      * method signatures change or if the xml deployment descriptors changed,
      * the whole jar needs to be rebuilt with ejbdeploy. This is not strictly
-     * true for the xml files. If the JNDI name changes then the jar doesnt
+     * true for the xml files. If the JNDI name changes then the jar doesn't
      * have to be rebuild, but if the resources references change then it
      * does. At this point the websphere jar gets rebuilt if the xml files
      * change at all.
@@ -825,7 +825,7 @@
                             je = (JarEntry) replaceEntries.get(je.getName());
                             is = genericJar.getInputStream(je);
                         } else {
-                            //use fle from original websphere jar
+                            //use file from original websphere jar
 
                             is = wasJar.getInputStream(je);
                         }
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Compatability.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/Compatability.java,v
retrieving revision 1.5
diff -u -r1.5 Compatability.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Compatability.java    
    9 Jul 2003 11:24:31 -0000       1.5
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Compatability.java    
    22 Sep 2003 14:52:15 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -59,7 +59,7 @@
  * of object.
  *
  * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
- *  This file is from excalibur.extension package. Dont edit this file
+ *  This file is from excalibur.extension package. Don't edit this file
  * directly as there is no unit tests to make sure it is operational
  * in ant. Edit file in excalibur and run tests there before changing
  * ants file.
@@ -71,7 +71,7 @@
  */
 public final class Compatability {
     /**
-     * A string representaiton of compatability level.
+     * A string representation of compatability level.
      */
     private final String name;
 
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Compatibility.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/Compatibility.java,v
retrieving revision 1.4
diff -u -r1.4 Compatibility.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Compatibility.java    
    9 Jul 2003 11:24:31 -0000       1.4
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Compatibility.java    
    22 Sep 2003 14:52:15 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -59,7 +59,7 @@
  * of object.
  *
  * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
- *  This file is from excalibur.extension package. Dont edit this file
+ *  This file is from excalibur.extension package. Don't edit this file
  * directly as there is no unit tests to make sure it is operational
  * in ant. Edit file in excalibur and run tests there before changing
  * ants file.
@@ -71,7 +71,7 @@
  */
 public final class Compatibility {
     /**
-     * A string representaiton of compatibility level.
+     * A string representation of compatibility level.
      */
     private final String name;
 
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/extension/DeweyDecimal.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/DeweyDecimal.java,v
retrieving revision 1.4
diff -u -r1.4 DeweyDecimal.java
--- src/main/org/apache/tools/ant/taskdefs/optional/extension/DeweyDecimal.java 
9 Jul 2003 11:24:31 -0000       1.4
+++ src/main/org/apache/tools/ant/taskdefs/optional/extension/DeweyDecimal.java 
22 Sep 2003 14:52:15 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -86,7 +86,7 @@
     /**
      * Construct a DeweyDecimal from string in DeweyDecimal format.
      *
-     * @param string the string in dewey decimal format
+     * @param string the string in Dewey decimal format
      * @exception NumberFormatException if string is malformed
      */
     public DeweyDecimal(final String string)
@@ -119,7 +119,7 @@
     /**
      * Return number of components in <code>DeweyDecimal</code>.
      *
-     * @return the number of components in dewey decimal
+     * @return the number of components in Dewey decimal
      */
     public int getSize() {
         return components.length;
Index: src/main/org/apache/tools/ant/taskdefs/optional/extension/Extension.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/Extension.java,v
retrieving revision 1.8
diff -u -r1.8 Extension.java
--- src/main/org/apache/tools/ant/taskdefs/optional/extension/Extension.java    
4 Jul 2003 11:36:32 -0000       1.8
+++ src/main/org/apache/tools/ant/taskdefs/optional/extension/Extension.java    
22 Sep 2003 14:52:16 -0000
@@ -265,7 +265,7 @@
      * are no such optional packages, a zero-length list is returned.
      *
      * @param manifest Manifest to be parsed
-     * @return the dependencies that are specified in manifes
+     * @return the dependencies that are specified in manifest
      */
     public static Extension[] getRequired(final Manifest manifest) {
         return getListed(manifest, Attributes.Name.EXTENSION_LIST);
@@ -474,7 +474,7 @@
      *
      * @param required Description of the required optional package
      * @return the enum indicating the compatibility (or lack thereof)
-     *         of specifed extension
+     *         of specified extension
      */
     public Compatibility getCompatibilityWith(final Extension required) {
         // Extension Name must match
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/extension/ExtensionAdapter.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/ExtensionAdapter.java,v
retrieving revision 1.8
diff -u -r1.8 ExtensionAdapter.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/extension/ExtensionAdapter.java 
    9 Jul 2003 12:12:59 -0000       1.8
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/extension/ExtensionAdapter.java 
    22 Sep 2003 14:52:16 -0000
@@ -226,7 +226,7 @@
     }
 
     /**
-     * Convert this adpater object into an extension object.
+     * Convert this adapter object into an extension object.
      *
      * @return the extension object
      */
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/extension/LibraryDisplayer.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/LibraryDisplayer.java,v
retrieving revision 1.4
diff -u -r1.4 LibraryDisplayer.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/extension/LibraryDisplayer.java 
    9 Jul 2003 11:24:31 -0000       1.4
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/extension/LibraryDisplayer.java 
    22 Sep 2003 14:52:16 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -60,7 +60,7 @@
 
 /**
  * Utility class to output the information in a jar relating
- * to "Optional Packages" (formely known as "Extensions")
+ * to "Optional Packages" (formerly known as "Extensions")
  * and Package Specifications.
  *
  * @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Specification.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/Specification.java,v
retrieving revision 1.4
diff -u -r1.4 Specification.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Specification.java    
    4 Jul 2003 13:03:37 -0000       1.4
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/extension/Specification.java    
    22 Sep 2003 14:52:16 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -303,7 +303,7 @@
     /**
      * Get the title of the specification.
      *
-     * @return the title of speciication
+     * @return the title of specification
      */
     public String getSpecificationTitle() {
         return specificationTitle;
@@ -356,10 +356,10 @@
 
     /**
      * Return an array containing sections to which specification applies
-     * or null if relevent to no sections.
+     * or null if relevant to no sections.
      *
      * @return an array containing sections to which specification applies
-     *         or null if relevent to no sections.
+     *         or null if relevant to no sections.
      */
     public String[] getSections() {
         if (null == sections) {
@@ -378,7 +378,7 @@
      *
      * @param other the other specification
      * @return the enum indicating the compatibility (or lack thereof)
-     *         of specifed Package Specification
+     *         of specified Package Specification
      */
     public Compatibility getCompatibilityWith(final Specification other) {
         // Specification Name must match
@@ -499,7 +499,7 @@
      * Combine all specifications objects that are identical except
      * for the sections.
      *
-     * <p>Note this is very inefficent and should probably be fixed
+     * <p>Note this is very inefficient and should probably be fixed
      * in the future.</p>
      *
      * @param list the array of results to trim
@@ -535,8 +535,8 @@
     /**
      * Test if two specifications are equal except for their sections.
      *
-     * @param specification one specificaiton
-     * @param other the ohter specification
+     * @param specification one specification
+     * @param other the other specification
      * @return true if two specifications are equal except for their
      *         sections, else false
      */
Index: src/main/org/apache/tools/ant/taskdefs/optional/i18n/Translate.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/i18n/Translate.java,v
retrieving revision 1.31
diff -u -r1.31 Translate.java
--- src/main/org/apache/tools/ant/taskdefs/optional/i18n/Translate.java 22 Aug 
2003 15:25:44 -0000      1.31
+++ src/main/org/apache/tools/ant/taskdefs/optional/i18n/Translate.java 22 Sep 
2003 14:52:16 -0000
@@ -216,7 +216,7 @@
 
     /**
      * Sets locale specific language of resource bundle; optional.
-     * @param bundleLanguage langage of the bundle
+     * @param bundleLanguage language of the bundle
      */
     public void setBundleLanguage(String bundleLanguage) {
         this.bundleLanguage = bundleLanguage;
@@ -390,7 +390,7 @@
      * basebundlename + "_" + language2 + "_" + country2
      * basebundlename + "_" + language2
      *
-     * To the generated name, a ".properties" string is appeneded and
+     * To the generated name, a ".properties" string is appended and
      * once this file is located, it is treated just like a properties file
      * but with bundle encoding also considered while loading.
      */
@@ -455,7 +455,7 @@
             log(propsFile + " not found.", Project.MSG_DEBUG);
             //if all resource files associated with this bundle
             //have been scanned for and still not able to
-            //find a single resrouce file, throw exception
+            //find a single resource file, throw exception
             if (!loaded && checkLoaded) {
                 throw new BuildException(ioe.getMessage(), getLocation());
             }
@@ -524,7 +524,7 @@
      * and endToken.  The values for these keys are looked up from
      * the hashtable and substituted.  If the hashtable doesn't
      * contain the key, they key itself is used as the value.
-     * Detination files and directories are created as needed.
+     * Destination files and directories are created as needed.
      * The destination file is overwritten only if
      * the forceoverwritten attribute is set to true if
      * the source file or any associated bundle resource file is
@@ -545,7 +545,7 @@
                             destDir.mkdirs();
                         }
                     } catch (Exception e) {
-                        log("Exception occured while trying to check/create "
+                        log("Exception occurred while trying to check/create "
                             + " parent directory.  " + e.getMessage(),
                             Project.MSG_DEBUG);
                     }
@@ -592,7 +592,7 @@
 
                             // we found a starttoken, is there an endtoken 
following?
                             // start at token+tokenlength because start and end
-                            // token may be indentical
+                            // token may be identical
                             int endIndex = line.indexOf(endToken, startIndex + 
startToken.length());
                             if (endIndex < 0) {
                                 startIndex += 1;
Index: src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJAntToolGUI.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJAntToolGUI.java,v
retrieving revision 1.21
diff -u -r1.21 VAJAntToolGUI.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJAntToolGUI.java      
19 Jul 2003 11:20:18 -0000      1.21
+++ src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJAntToolGUI.java      
22 Sep 2003 14:52:17 -0000
@@ -94,7 +94,7 @@
 import org.apache.tools.ant.util.StringUtils;
 
 /**
- * This is a simple grafical user interface to provide the information needed
+ * This is a simple graphical user interface to provide the information needed
  * by ANT and to start the build-process within IBM VisualAge for Java.
  * <p>
  * I was using AWT to make it independent from the JDK-version. Please don't
@@ -121,7 +121,7 @@
      */
     // main model
     private VAJBuildInfo iBuildInfo = null;
-    // Menue
+    // Menu
     private MenuBar iAntMakeMenuBar = null;
     private Menu iFileMenu = null;
     private MenuItem iSaveMenuItem = null;
@@ -193,7 +193,7 @@
 
         /**
          *  Fired after the last target has finished. This event
-         *  will still be thrown if an error occured during the build.
+         *  will still be thrown if an error occurred during the build.
          *
          *  @see BuildEvent#getException()
          */
@@ -263,7 +263,7 @@
 
         /**
          *  Fired when a target has finished. This event will
-         *  still be thrown if an error occured during the build.
+         *  still be thrown if an error occurred during the build.
          *
          *  @see BuildEvent#getException()
          */
@@ -283,7 +283,7 @@
 
         /**
          *  Fired when a task has finished. This event will still
-         *  be throw if an error occured during the build.
+         *  be throw if an error occurred during the build.
          *
          *  @see BuildEvent#getException()
          */
@@ -531,7 +531,7 @@
         return;
     }
     /**
-     * Fills the taget-list with project-targets
+     * Fills the target-list with project-targets
      */
     private void fillList() {
         getTargetList().removeAll();
@@ -1389,7 +1389,7 @@
                 // Select the log-level given by BuildInfo
                 
getMessageOutputLevelChoice().select(iBuildInfo.getOutputMessageLevel());
                 fillList();
-                // BuildInfo can conly be saved to a VAJ project if tool API
+                // BuildInfo can only be saved to a VAJ project if tool API
                 // is called via the projects context-menu
                 if ((iBuildInfo.getVAJProjectName() == null)
                     || (iBuildInfo.getVAJProjectName().equals(""))) {
Index: src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJBuildInfo.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJBuildInfo.java,v
retrieving revision 1.11
diff -u -r1.11 VAJBuildInfo.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJBuildInfo.java       
14 Jul 2003 15:29:41 -0000      1.11
+++ src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJBuildInfo.java       
22 Sep 2003 14:52:17 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -77,7 +77,7 @@
  *   as ToolData in the VA repository)
  * - wraps Project functions for the GUI (get target list,
  *   execute target)
- * - manages a seperate thread for Ant project execution
+ * - manages a separate thread for Ant project execution
  *   this allows interrupting a running build from a GUI
  *
  * @author Wolf Siberski, TUI Infotec GmbH
@@ -113,7 +113,7 @@
 
         /**
          * checks if the thread was interrupted. When an
-         * interrupt occured, throw an Exception to stop
+         * interrupt occurred, throw an Exception to stop
          * the execution.
          */
         protected void checkInterrupted() {
@@ -124,7 +124,7 @@
 
         /**
          *  Fired after the last target has finished. This event
-         *  will still be thrown if an error occured during the build.
+         *  will still be thrown if an error occurred during the build.
          */
         public void buildFinished(BuildEvent event) {
             wrappedListener.buildFinished(event);
@@ -149,7 +149,7 @@
 
         /**
          *  Fired when a target has finished. This event will
-         *  still be thrown if an error occured during the build.
+         *  still be thrown if an error occurred during the build.
          */
         public void targetFinished(BuildEvent event) {
             wrappedListener.targetFinished(event);
@@ -166,7 +166,7 @@
 
         /**
          *  Fired when a task has finished. This event will still
-         *  be throw if an error occured during the build.
+         *  be throw if an error occurred during the build.
          */
         public void taskFinished(BuildEvent event) {
             wrappedListener.taskFinished(event);
Index: src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJImport.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJImport.java,v
retrieving revision 1.21
diff -u -r1.21 VAJImport.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJImport.java  4 Aug 
2003 16:06:45 -0000       1.21
+++ src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJImport.java  22 Sep 
2003 14:52:17 -0000
@@ -139,7 +139,7 @@
      * Extended DirectoryScanner that has accessors for the
      * includes and excludes fields.
      *
-     * This is kindof a hack to get includes and excludes
+     * This is kind of a hack to get includes and excludes
      * from the directory scanner. In order to keep
      * the URLs short we only want to send the patterns to the
      * remote tool server and let him figure out the files.
Index: src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJLocalUtil.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJLocalUtil.java,v
retrieving revision 1.14
diff -u -r1.14 VAJLocalUtil.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJLocalUtil.java       
19 Jul 2003 08:11:04 -0000      1.14
+++ src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJLocalUtil.java       
22 Sep 2003 14:52:17 -0000
@@ -239,7 +239,7 @@
                 }
             }
         } catch (IvjException e) {
-            throw createBuildException("VA Exception occured: ", e);
+            throw createBuildException("VA Exception occurred: ", e);
         }
 
         return expandedDescs;
@@ -275,7 +275,7 @@
             return pe;
 
         } catch (IvjException e) {
-            throw createBuildException("VA Exception occured: ", e);
+            throw createBuildException("VA Exception occurred: ", e);
         }
 
     }
@@ -319,7 +319,7 @@
                 + " of " + pe.getName(), MSG_INFO);
             return pe;
         } catch (IvjException e) {
-            throw createBuildException("VA Exception occured: ", e);
+            throw createBuildException("VA Exception occurred: ", e);
         }
 
     }
Index: src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJTask.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJTask.java,v
retrieving revision 1.7
diff -u -r1.7 VAJTask.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJTask.java    6 May 
2003 15:19:17 -0000       1.7
+++ src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJTask.java    22 Sep 
2003 14:52:17 -0000
@@ -98,7 +98,7 @@
     }
 
     /**
-     * Name and port of a remote tool server, optiona.
+     * Name and port of a remote tool server, optional.
      * Format: &lt;servername&gt;:&lt;port no&gt;.
      * If this attribute is set, the tasks will be executed on the specified 
tool
      * server.
Index: src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJToolsServlet.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJToolsServlet.java,v
retrieving revision 1.12
diff -u -r1.12 VAJToolsServlet.java
--- src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJToolsServlet.java    
6 May 2003 15:19:17 -0000       1.12
+++ src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJToolsServlet.java    
22 Sep 2003 14:52:17 -0000
@@ -136,7 +136,7 @@
             initRequest();
             executeRequest();
         } catch (BuildException e) {
-            util.log("Error occured: " + e.getMessage(), VAJUtil.MSG_ERR);
+            util.log("Error occurred: " + e.getMessage(), VAJUtil.MSG_ERR);
         } catch (Exception e) {
             try {
                 if (!(e instanceof BuildException)) {
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJWorkspaceScanner.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJWorkspaceScanner.java,v
retrieving revision 1.12
diff -u -r1.12 VAJWorkspaceScanner.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJWorkspaceScanner.java    
    17 Jul 2003 15:44:41 -0000      1.12
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJWorkspaceScanner.java    
    22 Sep 2003 14:52:17 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -206,8 +206,8 @@
             if (packages != null) {
                 for (int i = 0; i < packages.length; i++) {
                     Package item = packages[i];
-                    // replace '.' by file seperator because the patterns are
-                    // using file seperator syntax (and we can use the match
+                    // replace '.' by file separator because the patterns are
+                    // using file separator syntax (and we can use the match
                     // methods this way).
                     String name =
                         project.getName()
@@ -219,7 +219,7 @@
                 }
             }
         } catch (IvjException e) {
-            throw VAJLocalUtil.createBuildException("VA Exception occured: ", 
e);
+            throw VAJLocalUtil.createBuildException("VA Exception occurred: ", 
e);
         }
     }
 }
Index: 
src/main/org/apache/tools/ant/taskdefs/optional/j2ee/GenericHotDeploymentTool.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/optional/j2ee/GenericHotDeploymentTool.java,v
retrieving revision 1.11
diff -u -r1.11 GenericHotDeploymentTool.java
--- 
src/main/org/apache/tools/ant/taskdefs/optional/j2ee/GenericHotDeploymentTool.java
  21 Sep 2003 20:20:02 -0000      1.11
+++ 
src/main/org/apache/tools/ant/taskdefs/optional/j2ee/GenericHotDeploymentTool.java
  22 Sep 2003 14:52:18 -0000
@@ -1,7 +1,7 @@
 /*
  * The Apache Software License, Version 1.1
  *
- * Copyright (c) 2002 The Apache Software Foundation.  All rights
+ * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -90,7 +90,7 @@
     }
 
     /**
-     *  Add a nested argment element to hand to the JVM running the
+     *  Add a nested argument element to hand to the JVM running the
      *  deployment tool.
      *  Creates a nested arg element.
      *  @return A Commandline.Argument object representing the
@@ -150,7 +150,7 @@
     }
 
     /**
-     *  The name of the class to execute to perfom
+     *  The name of the class to execute to perform
      *  deployment; required.
      *  Example: "com.foobar.tools.deploy.DeployTool"
      *  @param className The fully qualified class name of the class

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to