Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 31742 invoked from network); 27 May 2002 11:02:15 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 27 May 2002 11:02:15 -0000 Received: (qmail 14925 invoked by uid 97); 27 May 2002 11:02:09 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 14861 invoked by uid 97); 27 May 2002 11:02:09 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 14850 invoked by uid 97); 27 May 2002 11:02:08 -0000 X-Antivirus: nagoya (v4198 created Apr 24 2002) Date: 27 May 2002 11:02:06 -0000 Message-ID: <20020527110206.15966.qmail@icarus.apache.org> From: donaldp@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/extension Extension.java Specification.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N donaldp 02/05/27 04:02:06 Modified: src/main/org/apache/tools/ant/taskdefs/optional/extension Tag: ANT_15_BRANCH Extension.java Specification.java Log: Once again Jeff rushes to the rescue and points out all the places I messed up the spelling. Submitted by: Jeff Turner Revision Changes Path No revision No revision 1.2.2.2 +13 -13 jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/Extension.java Index: Extension.java =================================================================== RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/Extension.java,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -u -r1.2.2.1 -r1.2.2.2 --- Extension.java 8 May 2002 09:35:07 -0000 1.2.2.1 +++ Extension.java 27 May 2002 11:02:06 -0000 1.2.2.2 @@ -79,7 +79,7 @@ * * @author Craig R. McClanahan * @author Peter Donald - * @version $Revision: 1.2.2.1 $ $Date: 2002/05/08 09:35:07 $ + * @version $Revision: 1.2.2.2 $ $Date: 2002/05/27 11:02:06 $ */ public final class Extension { @@ -150,29 +150,29 @@ /** * Enum indicating that extension is compatible with other extension. */ - public static final Compatability COMPATIBLE = - new Compatability( "COMPATIBLE" ); + public static final Compatibility COMPATIBLE = + new Compatibility( "COMPATIBLE" ); /** * Enum indicating that extension requires an upgrade * of specification to be compatible with other extension. */ - public static final Compatability REQUIRE_SPECIFICATION_UPGRADE = - new Compatability( "REQUIRE_SPECIFICATION_UPGRADE" ); + public static final Compatibility REQUIRE_SPECIFICATION_UPGRADE = + new Compatibility( "REQUIRE_SPECIFICATION_UPGRADE" ); /** * Enum indicating that extension requires a vendor * switch to be compatible with other extension. */ - public static final Compatability REQUIRE_VENDOR_SWITCH = - new Compatability( "REQUIRE_VENDOR_SWITCH" ); + public static final Compatibility REQUIRE_VENDOR_SWITCH = + new Compatibility( "REQUIRE_VENDOR_SWITCH" ); /** * Enum indicating that extension requires an upgrade * of implementation to be compatible with other extension. */ - public static final Compatability REQUIRE_IMPLEMENTATION_UPGRADE = - new Compatability( "REQUIRE_IMPLEMENTATION_UPGRADE" ); + public static final Compatibility REQUIRE_IMPLEMENTATION_UPGRADE = + new Compatibility( "REQUIRE_IMPLEMENTATION_UPGRADE" ); /** * Enum indicating that extension is incompatible with @@ -180,8 +180,8 @@ * indicate). ie For example the other extension may have * a different ID. */ - public static final Compatability INCOMPATIBLE = - new Compatability( "INCOMPATIBLE" ); + public static final Compatibility INCOMPATIBLE = + new Compatibility( "INCOMPATIBLE" ); /** * The name of the optional package being made available, or required. @@ -503,10 +503,10 @@ * Extension with the specified Extension. * * @param required Description of the required optional package - * @return the enum indicating the compatability (or lack thereof) + * @return the enum indicating the compatibility (or lack thereof) * of specifed extension */ - public Compatability getCompatibilityWith( final Extension required ) + public Compatibility getCompatibilityWith( final Extension required ) { // Extension Name must match if( !m_extensionName.equals( required.getExtensionName() ) ) 1.1.2.1 +13 -13 jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/Specification.java Index: Specification.java =================================================================== RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/extension/Specification.java,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -u -r1.1 -r1.1.2.1 --- Specification.java 18 Apr 2002 12:50:35 -0000 1.1 +++ Specification.java 27 May 2002 11:02:06 -0000 1.1.2.1 @@ -79,7 +79,7 @@ * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING * * @author Peter Donald - * @version $Revision: 1.1 $ $Date: 2002/04/18 12:50:35 $ + * @version $Revision: 1.1.2.1 $ $Date: 2002/05/27 11:02:06 $ */ public final class Specification { @@ -123,29 +123,29 @@ * Enum indicating that extension is compatible with other Package * Specification. */ - public static final Compatability COMPATIBLE = - new Compatability( "COMPATIBLE" ); + public static final Compatibility COMPATIBLE = + new Compatibility( "COMPATIBLE" ); /** * Enum indicating that extension requires an upgrade * of specification to be compatible with other Package Specification. */ - public static final Compatability REQUIRE_SPECIFICATION_UPGRADE = - new Compatability( "REQUIRE_SPECIFICATION_UPGRADE" ); + public static final Compatibility REQUIRE_SPECIFICATION_UPGRADE = + new Compatibility( "REQUIRE_SPECIFICATION_UPGRADE" ); /** * Enum indicating that extension requires a vendor * switch to be compatible with other Package Specification. */ - public static final Compatability REQUIRE_VENDOR_SWITCH = - new Compatability( "REQUIRE_VENDOR_SWITCH" ); + public static final Compatibility REQUIRE_VENDOR_SWITCH = + new Compatibility( "REQUIRE_VENDOR_SWITCH" ); /** * Enum indicating that extension requires an upgrade * of implementation to be compatible with other Package Specification. */ - public static final Compatability REQUIRE_IMPLEMENTATION_CHANGE = - new Compatability( "REQUIRE_IMPLEMENTATION_CHANGE" ); + public static final Compatibility REQUIRE_IMPLEMENTATION_CHANGE = + new Compatibility( "REQUIRE_IMPLEMENTATION_CHANGE" ); /** * Enum indicating that extension is incompatible with @@ -153,8 +153,8 @@ * indicate). ie For example the other Package Specification * may have a different ID. */ - public static final Compatability INCOMPATIBLE = - new Compatability( "INCOMPATIBLE" ); + public static final Compatibility INCOMPATIBLE = + new Compatibility( "INCOMPATIBLE" ); /** * The name of the Package Specification. @@ -395,10 +395,10 @@ * Package Specification with the specified Extension. * * @param other the other specification - * @return the enum indicating the compatability (or lack thereof) + * @return the enum indicating the compatibility (or lack thereof) * of specifed Package Specification */ - public Compatability getCompatibilityWith( final Specification other ) + public Compatibility getCompatibilityWith( final Specification other ) { // Specification Name must match if( !m_specificationTitle.equals( other.getSpecificationTitle() ) ) -- To unsubscribe, e-mail: For additional commands, e-mail: