Latest MEG API updates from OSGi.
diff --git a/bundles/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationDescriptor.java b/bundles/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationDescriptor.java
index 6271896..e3b003f 100755
--- a/bundles/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationDescriptor.java
+++ b/bundles/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationDescriptor.java
@@ -1,5 +1,5 @@
 /*
- * $Header: /cvsroot/eclipse/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationDescriptor.java,v 1.1 2005/12/14 22:17:04 twatson Exp $
+ * $Header: /cvsroot/eclipse/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationDescriptor.java,v 1.2 2005/12/20 21:26:05 twatson Exp $
  * 
  * Copyright (c) OSGi Alliance (2004, 2005). All Rights Reserved.
  * 
@@ -289,7 +289,7 @@
 				throw new ApplicationException(ApplicationException.APPLICATION_LOCKED, "Application is locked, can't launch!");
 		}
 		if( !isLaunchableSpecific() )
-			throw new ApplicationException(ApplicationException.APPLICAITON_NOT_LAUNCHABLE,
+			throw new ApplicationException(ApplicationException.APPLICATION_NOT_LAUNCHABLE,
 					 "Cannot launch the application!");
 		checkArgs(arguments);
 		try {
diff --git a/bundles/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationException.java b/bundles/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationException.java
index 46e1f7f..d79f861 100755
--- a/bundles/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationException.java
+++ b/bundles/org.eclipse.equinox.app/src/org/osgi/service/application/ApplicationException.java
@@ -2,20 +2,19 @@
 
 /**
  * This exception is used to indicate problems related to application 
- * lifecycle management
+ * lifecycle management.
  * 
- * <p>
  * <code>ApplicationException</code> object is created by the Application Admin to denote
  * an exception condition in the lifecycle of an application.
  * <code>ApplicationException</code>s should not be created by developers.
- * <p>
+ * <br/>
  * <code>ApplicationException</code>s are associated with an error code. This code
  * describes the type of problem reported in this exception. The possible codes are:
  * <ul>
- * <li> {@link #APPLICATION_LOCKED} - The application couldn't be launched because it is locked.
- * <li> {@link #APPLICAITON_NOT_LAUNCHABLE} - The application is not in launchable state.
+ * <li> {@link #APPLICATION_LOCKED} - The application couldn't be launched because it is locked.</li>
+ * <li> {@link #APPLICAITON_NOT_LAUNCHABLE} - The application is not in launchable state.</li>
  * <li> {@link #APPLICATION_INTERNAL_ERROR} - An exception was thrown by the application or its
- *       container during launch.
+ *       container during launch.</li>
  * </ul>
  * 
  */
@@ -34,7 +33,7 @@
 	 * {@link ApplicationDescriptor#APPLICATION_LAUNCHABLE}
 	 * attribute is false.
 	 */
-	public static final int APPLICAITON_NOT_LAUNCHABLE = 0x02;
+	public static final int APPLICATION_NOT_LAUNCHABLE = 0x02;
 	
 	/**
 	 * An exception was thrown by the application or the corresponding