Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsholl2009-06-09 22:38:42 +0000
committerjsholl2009-06-09 22:38:42 +0000
commitc1e7824c72bcf0ac5bdd62aaa186c0598902c559 (patch)
treef2751d767dbfca574730531737583b500189dcd6 /plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/DispatcherType.java
parentd7c2960071418a73a29cc72a10eb0964f8d1f8b1 (diff)
downloadwebtools.javaee-c1e7824c72bcf0ac5bdd62aaa186c0598902c559.tar.gz
webtools.javaee-c1e7824c72bcf0ac5bdd62aaa186c0598902c559.tar.xz
webtools.javaee-c1e7824c72bcf0ac5bdd62aaa186c0598902c559.zip
[279627] Tighten compiler and move up to Java 1.5
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/DispatcherType.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/DispatcherType.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/DispatcherType.java b/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/DispatcherType.java
index 29d06a067..9c0875f1c 100644
--- a/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/DispatcherType.java
+++ b/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/DispatcherType.java
@@ -83,7 +83,7 @@ public final class DispatcherType extends AbstractEnumerator
* @generated
* @ordered
*/
- public static final DispatcherType FORWARD_LITERAL = new DispatcherType(FORWARD, "FORWARD", "FORWARD");//$NON-NLS-1$
+ public static final DispatcherType FORWARD_LITERAL = new DispatcherType(FORWARD, "FORWARD", "FORWARD");//$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>INCLUDE</b></em>' literal object.
@@ -97,7 +97,7 @@ public final class DispatcherType extends AbstractEnumerator
* @generated
* @ordered
*/
- public static final DispatcherType INCLUDE_LITERAL = new DispatcherType(INCLUDE, "INCLUDE", "INCLUDE");//$NON-NLS-1$
+ public static final DispatcherType INCLUDE_LITERAL = new DispatcherType(INCLUDE, "INCLUDE", "INCLUDE");//$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>REQUEST</b></em>' literal object.
@@ -111,7 +111,7 @@ public final class DispatcherType extends AbstractEnumerator
* @generated
* @ordered
*/
- public static final DispatcherType REQUEST_LITERAL = new DispatcherType(REQUEST, "REQUEST", "REQUEST");//$NON-NLS-1$
+ public static final DispatcherType REQUEST_LITERAL = new DispatcherType(REQUEST, "REQUEST", "REQUEST");//$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>ERROR</b></em>' literal object.
@@ -125,7 +125,7 @@ public final class DispatcherType extends AbstractEnumerator
* @generated
* @ordered
*/
- public static final DispatcherType ERROR_LITERAL = new DispatcherType(ERROR, "ERROR", "ERROR");//$NON-NLS-1$
+ public static final DispatcherType ERROR_LITERAL = new DispatcherType(ERROR, "ERROR", "ERROR");//$NON-NLS-1$ //$NON-NLS-2$
/**
* An array of all the '<em><b>Dispatcher Type</b></em>' enumerators.

Back to the top