Skip to main content
summaryrefslogtreecommitdiffstats
blob: 41336fbd91f0ca86a953af0d9ddd16570fb0093a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*******************************************************************************
 * Copyright (c) 2000, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.ws.internal.datamodel;

import java.util.Enumeration;
import java.util.Vector;

public class BasicRel implements Rel
{

  // Copyright
  public static final String copyright = "(c) Copyright IBM Corporation 2000, 2002.";

  private String fName;
  private Element fSourceElement;
  private Vector fConnections;

  public BasicRel ( String name, Element sourceElement )
  {
    fName = name;
    fSourceElement = sourceElement;
    fConnections = new Vector();
  }

  public String getName ()
  {
    return fName;
  }

  public Element getSourceElement ()
  {
    return fSourceElement;
  }

  public Enumeration getTargetElements ()
  {
    return new ElementEnumeration(fConnections.elements());
  }

  public int getNumberOfTargetElements ()
  {
    return fConnections.size();
  }

  public void addConnection ( Connection connection )
  {
    fConnections.addElement(connection);
  }

  public boolean removeConnection ( Connection connection )
  {
    return fConnections.removeElement(connection);
  }

  public Connection getConnectionTo ( Element targetElement )
  {
    Enumeration e = fConnections.elements();
    while (e.hasMoreElements())
    {
      Connection c = (Connection)e.nextElement();
      if (c.getElement() == targetElement) return c;
    }
    return null;
  }

  public String toString ()
  {
    return getName();
  }

  private class ElementEnumeration implements Enumeration
  {
    private Enumeration fConnectionEnumeration;

    public ElementEnumeration ( Enumeration connectionEnumeration )
    {
      fConnectionEnumeration = connectionEnumeration;
    }

    public boolean hasMoreElements ()
    {
      return fConnectionEnumeration.hasMoreElements();
    }

    public Object nextElement ()
    {
      return ((Connection)fConnectionEnumeration.nextElement()).getElement();
    }
  }
}

Back to the top

/jsdt/internal/compiler/batch/Main.java2
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/flow/UnconditionalFlowInfo.java2
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/impl/CompilerOptions.java13
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/CompilationUnitBinding.java5
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java4
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LookupEnvironment.java5
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/SourceTypeBinding.java4
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/parser/Parser.java4
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/problem/ProblemReporter.java6
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/ClassFile.java10
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaModelManager.java6
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaProject.java13
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryFragmentRoot.java13
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryPackageFragment.java31
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/MetadataFile.java36
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/NameLookup.java7
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/PackageFragmentRoot.java4
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/SetContainerOperation.java5
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/AbstractImageBuilder.java5
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/JavaBuilder.java2
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/dom/rewrite/ASTRewriteFlattener.java2
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddFolderToIndex.java3
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddLibraryFileToIndex.java4
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/IndexAllProject.java8
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationLocator.java4
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationPattern.java1
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/Util.java9
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/ClassData.java17
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Event.java2
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/IOAAMetaDataConstants.java8
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataReader.java28
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataSourceElementNotifier.java3
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Property.java2
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/.classpath7
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/.project28
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.core.resources.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.core.runtime.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.jdt.core.prefs80
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.jdt.ui.prefs4
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.ltk.core.refactoring.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.pde.prefs16
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/META-INF/MANIFEST.MF22
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/about.html28
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/build.properties17
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/plugin.properties13
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/plugin.xml24
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.java27
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptElementMapper.java44
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.java412
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/RenameTypeArguments.java86
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.java42
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/DeleteDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/EncapsulateFieldDescriptor.java40
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractConstantDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractInterfaceDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractLocalDescriptor.java40
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractMethodDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractSuperclassDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/GeneralizeTypeDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InferTypeArgumentsDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineConstantDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineLocalVariableDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineMethodDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceFactoryDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceIndirectionDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceParameterDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.java43
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.java464
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.java348
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.java142
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/PullUpDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/PushDownDescriptor.java41
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.java568
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameLocalVariableDescriptor.java132
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameResourceDescriptor.java122
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/UseSupertypeDescriptor.java124
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/IStatusConstants.java23
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaElementPropertyTester.java167
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationMessages.java28
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationMessages.properties11
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationPlugin.java86
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/refactoring/descriptors/DescriptorMessages.java80
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/refactoring/descriptors/DescriptorMessages.properties37
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/plugin.properties6
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/plugin.xml31
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/CleanUpRefactoring.java7
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/ConvertLoopFix.java60
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/filters/NamePatternFilter.java2
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/navigator/JavaNavigatorContentProvider.java13
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/packageview/PackageExplorerContentProvider.java33
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/preferences/cleanup/CodeStyleTabPage.java4
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/correction/QuickAssistProcessor.java35
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/OAADocReader.java105
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/NewJSFileWizardPage.java20
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java2
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/full_rhino_transparent.gifbin0 -> 2193 bytes-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/JSdocContentAccess.java11
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/project/JsNature.java2
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/.project22
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/.settings/org.eclipse.core.resources.prefs3
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/META-INF/MANIFEST.MF8
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/about.html28
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/atf.html24
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/customlib.html24
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global.html30
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/add.html92
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/1.jpgbin35929 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/2.jpgbin42854 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/3.jpgbin21521 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/4.jpgbin17731 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/5.jpgbin40299 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/r3.jpgbin52282 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/img/s1.jpgbin42041 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/remove.html71
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/global/source.html38
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/advanced/index.html26
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/apiPackages.txt30
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/atfdocs.css1
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/book.css1
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/build.properties20
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/buildExtDocs.properties39
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/buildExtDocs.xml58
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/contributing/framework.html25
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/contributing/index.html28
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/contributing/library.html43
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/development/archOverview.html28
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/development/extension-points/index.html46
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/development/index.html27
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/development/limitations.html40
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/features/index.html82
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/framework/index.html28
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/allclasses-frame.html1084
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/allclasses-noframe.html1084
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/constant-values.html18218
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/deprecated-list.html1277
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/help-doc.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-1.html1715
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-10.html698
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-11.html229
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-12.html363
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-13.html755
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-14.html1048
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-15.html396
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-16.html907
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-17.html195
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-18.html937
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-19.html1964
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-2.html442
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-20.html1234
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-21.html463
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-22.html895
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-23.html323
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-24.html147
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-25.html153
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-26.html150
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-3.html1956
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-4.html544
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-5.html1746
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-6.html2683
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-7.html3654
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-8.html316
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-9.html2249
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/index.html39
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/BindingKey.html596
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/BufferChangedEvent.html385
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/CompletionContext.html614
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/CompletionFlags.html290
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/CompletionProposal.html2424
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/CompletionRequestor.html589
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/CorrectionEngine.html454
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ElementChangedEvent.html394
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/Flags.html1085
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IAccessRule.html405
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IBuffer.html747
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IBufferChangedListener.html220
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IBufferFactory.html223
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IClassFile.html495
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ICodeAssist.html367
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ICompletionRequestor.html762
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ICorrectionRequestor.html408
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IElementChangedListener.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IField.html440
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IFunction.html778
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IFunctionContainer.html372
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IImportContainer.html283
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IImportDeclaration.html332
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IIncludePathAttribute.html346
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IIncludePathEntry.html851
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IInitializer.html262
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJarEntryResource.html320
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJavaScriptElement.html1231
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html1081
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJavaScriptModel.html695
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html431
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJavaScriptModelStatus.html294
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html1174
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJavaScriptProject.html1860
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJavaScriptUnit.html1767
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html505
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html549
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ILocalVariable.html331
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ILookupScope.html282
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IMember.html642
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IOpenable.html531
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IPackageDeclaration.html272
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IPackageFragment.html733
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html1120
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IParent.html255
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IProblemRequestor.html287
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IRegion.html304
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ISourceManipulation.html367
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ISourceRange.html247
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ISourceReference.html284
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IType.html2127
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ITypeHierarchy.html871
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ITypeHierarchyChangedListener.html222
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ITypeParameter.html353
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ITypeRoot.html419
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/IWorkingCopy.html786
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/JSDScopeUtil.html319
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/JavaScriptConventions.html795
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/JavaScriptCore.html6763
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/JavaScriptModelException.html415
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html1097
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/JsGlobalScopeVariableInitializer.html278
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/LibrarySuperType.html564
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/Messages.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/NamingConventions.html964
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/Signature.html2882
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ToolFactory.html539
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/UnimplementedException.html252
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/WorkingCopyOwner.html457
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ASTVisitor.html3961
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IAND_AND_Expression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IASTNode.html2401
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IAbstractFunctionDeclaration.html424
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IAbstractVariableDeclaration.html374
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IAllocationExpression.html220
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IAnnotation.html178
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IAnnotationFunctionDeclaration.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IArgument.html324
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IArrayAllocationExpression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IArrayInitializer.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IArrayQualifiedTypeReference.html218
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IArrayReference.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IArrayTypeReference.html218
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IAssertStatement.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IAssignment.html278
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IBinaryExpression.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IBlock.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IBranchStatement.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IBreakStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ICaseStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ICastExpression.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ICharLiteral.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ICombinedBinaryExpression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ICompoundAssignment.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IConditionalExpression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IConstructorDeclaration.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IContinueStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IDoStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IDoubleLiteral.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IEmptyExpression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IEmptyStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IEqualExpression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IExplicitConstructorCall.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IExpression.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IExtendedStringLiteral.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IFalseLiteral.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IFieldDeclaration.html227
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IFieldReference.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IFloatLiteral.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IForInStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IForStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IForeachStatement.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IFunctionCall.html316
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IFunctionDeclaration.html229
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IFunctionExpression.html270
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IIfStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IImportReference.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IInitializer.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IInstanceOfExpression.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IIntLiteral.html227
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IIntLiteralMinValue.html221
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDoc.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocAllocationExpression.html194
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocArgumentExpression.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocArrayQualifiedTypeReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocArraySingleTypeReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocFieldReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocImplicitTypeReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocMessageSend.html221
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocQualifiedTypeReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocReturnStatement.html221
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocSingleNameReference.html221
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IJsDocSingleTypeReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ILabeledStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IListExpression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ILiteral.html250
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ILocalDeclaration.html290
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ILongLiteral.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ILongLiteralMinValue.html221
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IMagicLiteral.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IMarkerAnnotation.html175
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IMemberValuePair.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/INameReference.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/INormalAnnotation.html175
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/INullLiteral.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/INumberLiteral.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IOR_OR_Expression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IObjectLiteral.html252
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IObjectLiteralField.html291
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IOperatorExpression.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IParameterizedQualifiedTypeReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IParameterizedSingleTypeReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IPostfixExpression.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IPrefixExpression.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IProgramElement.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IQualifiedAllocationExpression.html194
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IQualifiedNameReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IQualifiedSuperReference.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IQualifiedThisReference.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IQualifiedTypeReference.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IReference.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IRegExLiteral.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IReturnStatement.html250
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IScriptFileDeclaration.html325
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ISingleMemberAnnotation.html178
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ISingleNameReference.html250
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ISingleTypeReference.html218
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IStatement.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IStringLiteral.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IStringLiteralConcatenation.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ISubRoutineStatement.html218
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ISuperReference.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ISwitchStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IThisReference.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IThrowStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ITrueLiteral.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ITryStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ITypeDeclaration.html215
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ITypeParameter.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/ITypeReference.html218
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IUnaryExpression.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IUndefinedLiteral.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IWhileStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IWildcard.html175
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/IWithStatement.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ASTVisitor.html205
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IAND_AND_Expression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IASTNode.html1164
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IAbstractFunctionDeclaration.html238
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IAbstractVariableDeclaration.html213
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IAllocationExpression.html239
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IAnnotation.html211
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IAnnotationFunctionDeclaration.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IArgument.html208
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IArrayAllocationExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IArrayInitializer.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IArrayQualifiedTypeReference.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IArrayReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IArrayTypeReference.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IAssertStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IAssignment.html253
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IBinaryExpression.html226
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IBlock.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IBranchStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IBreakStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ICaseStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ICastExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ICharLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ICombinedBinaryExpression.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ICompoundAssignment.html208
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IConditionalExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IConstructorDeclaration.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IContinueStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IDoStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IDoubleLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IEmptyExpression.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IEmptyStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IEqualExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IExplicitConstructorCall.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IExpression.html816
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IExtendedStringLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IFalseLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IFieldDeclaration.html201
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IFieldReference.html201
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IFloatLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IForInStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IForStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IForeachStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IFunctionCall.html230
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IFunctionDeclaration.html289
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IFunctionExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IIfStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IImportReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IInitializer.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IInstanceOfExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IIntLiteral.html201
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IIntLiteralMinValue.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDoc.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocAllocationExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocArgumentExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocArrayQualifiedTypeReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocArraySingleTypeReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocFieldReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocImplicitTypeReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocMessageSend.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocQualifiedTypeReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocReturnStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocSingleNameReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IJsDocSingleTypeReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ILabeledStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IListExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ILiteral.html311
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ILocalDeclaration.html231
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ILongLiteral.html201
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ILongLiteralMinValue.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IMagicLiteral.html200
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IMarkerAnnotation.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IMemberValuePair.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/INameReference.html194
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/INormalAnnotation.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/INullLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/INumberLiteral.html230
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IOR_OR_Expression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IObjectLiteral.html221
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IObjectLiteralField.html229
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IOperatorExpression.html237
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IParameterizedQualifiedTypeReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IParameterizedSingleTypeReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IPostfixExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IPrefixExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IProgramElement.html1043
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IQualifiedAllocationExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IQualifiedNameReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IQualifiedSuperReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IQualifiedThisReference.html201
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IQualifiedTypeReference.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IReference.html264
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IRegExLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IReturnStatement.html230
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IScriptFileDeclaration.html213
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ISingleMemberAnnotation.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ISingleNameReference.html201
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ISingleTypeReference.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IStatement.html1011
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IStringLiteral.html208
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IStringLiteralConcatenation.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ISubRoutineStatement.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ISuperReference.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ISwitchStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IThisReference.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IThrowStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ITrueLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ITryStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ITypeDeclaration.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ITypeParameter.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/ITypeReference.html267
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IUnaryExpression.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IUndefinedLiteral.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IWhileStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IWildcard.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/class-use/IWithStatement.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/package-frame.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/package-summary.html686
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/package-tree.html232
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/ast/package-use.html1000
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/BindingKey.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/BufferChangedEvent.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/CompletionContext.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/CompletionFlags.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/CompletionProposal.html265
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/CompletionRequestor.html293
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/CorrectionEngine.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ElementChangedEvent.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/Flags.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IAccessRule.html246
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IBuffer.html255
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IBufferChangedListener.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IBufferFactory.html204
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IClassFile.html261
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ICodeAssist.html194
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ICompletionRequestor.html189
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ICorrectionRequestor.html191
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IElementChangedListener.html193
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IField.html288
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IFunction.html408
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IFunctionContainer.html207
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IImportContainer.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IImportDeclaration.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IIncludePathAttribute.html316
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IIncludePathEntry.html962
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IInitializer.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJarEntryResource.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJavaScriptElement.html1896
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJavaScriptElementDelta.html252
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJavaScriptModel.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJavaScriptModelMarker.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJavaScriptModelStatus.html200
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJavaScriptModelStatusConstants.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJavaScriptProject.html1338
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJavaScriptUnit.html1068
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJsGlobalScopeContainer.html335
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IJsGlobalScopeContainerInitializer.html243
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ILocalVariable.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ILookupScope.html323
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IMember.html325
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IOpenable.html268
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IPackageDeclaration.html196
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IPackageFragment.html367
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IPackageFragmentRoot.html416
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IParent.html282
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IProblemRequestor.html252
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IRegion.html252
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ISourceManipulation.html239
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ISourceRange.html244
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ISourceReference.html281
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IType.html954
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ITypeHierarchy.html348
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ITypeHierarchyChangedListener.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ITypeParameter.html231
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ITypeRoot.html255
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/IWorkingCopy.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/JSDScopeUtil.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/JavaScriptConventions.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/JavaScriptCore.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/JavaScriptModelException.html2515
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/JsGlobalScopeContainerInitializer.html278
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/JsGlobalScopeVariableInitializer.html178
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/LibrarySuperType.html243
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/Messages.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/NamingConventions.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/Signature.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/ToolFactory.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/UnimplementedException.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/class-use/WorkingCopyOwner.html646
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/BuildContext.html415
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html791
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/CharOperation.html3555
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/IProblem.html10187
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/IScanner.html502
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html2482
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/InvalidInputException.html269
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/ReconcileContext.html481
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html476
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/BuildContext.html186
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/CategorizedProblem.html203
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/CharOperation.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/IProblem.html323
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/IScanner.html202
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/ITerminalSymbols.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/InvalidInputException.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/ReconcileContext.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/class-use/ValidationParticipant.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.html481
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxUiInitializer.html259
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.html507
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerUILibInitializer.html259
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/LibraryLocation.html294
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.html471
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/class-use/FireFoxLibInitializer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/class-use/FireFoxUiInitializer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/class-use/InternetExplorerLibInitializer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/class-use/InternetExplorerUILibInitializer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/class-use/LibraryLocation.html267
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/class-use/SystemLibraryLocation.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/package-frame.html51
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/package-summary.html186
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/package-tree.html162
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/libraries/package-use.html207
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/package-frame.html66
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/package-summary.html214
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/package-tree.html162
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/compiler/package-use.html296
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/AST.html3283
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ASTMatcher.html2908
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ASTNode.html3093
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ASTParser.html1060
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ASTRequestor.html317
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ASTVisitor.html4617
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/AbstractTypeDeclaration.html486
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/AnonymousClassDeclaration.html351
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ArrayAccess.html423
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ArrayCreation.html490
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ArrayInitializer.html326
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ArrayType.html415
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/AssertStatement.html430
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html531
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Assignment.html505
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Block.html331
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/BlockComment.html282
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/BodyDeclaration.html422
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/BooleanLiteral.html351
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/BreakStatement.html356
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/CastExpression.html424
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/CatchClause.html413
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/CharacterLiteral.html416
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ChildListPropertyDescriptor.html280
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ChildPropertyDescriptor.html304
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html804
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Comment.html386
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ConditionalExpression.html493
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html412
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ContinueStatement.html356
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/DoStatement.html432
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/EmptyExpression.html267
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/EmptyStatement.html275
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/EnhancedForStatement.html496
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Expression.html396
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ExpressionStatement.html357
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/FieldAccess.html480
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html479
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ForInStatement.html510
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ForStatement.html551
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html1077
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/FunctionExpression.html352
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html585
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/FunctionRef.html513
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/FunctionRefParameter.html507
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/IBinding.html694
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/IExtendedModifier.html249
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/IFunctionBinding.html827
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/IMemberValuePairBinding.html337
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/IPackageBinding.html312
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ITypeBinding.html1971
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/IVariableBinding.html564
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/IfStatement.html522
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html601
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/InferredType.html302
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html732
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/InfixExpression.html584
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Initializer.html413
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/InstanceofExpression.html422
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/JSdoc.html429
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html1110
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/LabeledStatement.html431
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/LineComment.html280
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ListExpression.html319
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/MemberRef.html463
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Message.html377
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html547
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Modifier.html1258
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Name.html371
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/NullLiteral.html269
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/NumberLiteral.html345
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ObjectLiteral.html313
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ObjectLiteralField.html415
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html481
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ParameterizedType.html403
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ParenthesizedExpression.html353
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/PostfixExpression.Operator.html321
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/PostfixExpression.html435
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html405
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/PrefixExpression.html435
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/PrimitiveType.Code.html240
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/PrimitiveType.html630
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ProgramElement.html226
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/QualifiedName.html437
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/QualifiedType.html441
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/RegularExpressionLiteral.html351
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ReturnStatement.html358
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SimpleName.html411
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SimplePropertyDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SimpleType.html352
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html817
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Statement.html390
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/StringLiteral.html432
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/StructuralPropertyDescriptor.html370
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html491
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SuperFieldAccess.html464
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html583
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SwitchCase.html389
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/SwitchStatement.html406
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/TagElement.html873
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/TextElement.html353
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ThisExpression.html359
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/ThrowStatement.html354
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/TryStatement.html473
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/Type.html489
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html937
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/TypeDeclarationStatement.html493
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/TypeLiteral.html354
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/TypeParameter.html419
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/UndefinedLiteral.html269
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/VariableDeclaration.html518
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html554
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/VariableDeclarationFragment.html522
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html638
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/WhileStatement.html432
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/WildcardType.html471
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/WithStatement.html432
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/AST.html309
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ASTMatcher.html178
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ASTNode.html1436
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ASTParser.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ASTRequestor.html179
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ASTVisitor.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/AbstractTypeDeclaration.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/AnonymousClassDeclaration.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ArrayAccess.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ArrayCreation.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ArrayInitializer.html227
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ArrayType.html236
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/AssertStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Assignment.Operator.html305
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Assignment.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Block.html292
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/BlockComment.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/BodyDeclaration.html208
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/BooleanLiteral.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/BreakStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/CastExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/CatchClause.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/CharacterLiteral.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ChildListPropertyDescriptor.html593
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ChildPropertyDescriptor.html1100
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ClassInstanceCreation.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Comment.html192
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ConditionalExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ConstructorInvocation.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ContinueStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/DoStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/EmptyExpression.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/EmptyStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/EnhancedForStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Expression.html1089
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ExpressionStatement.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/FieldAccess.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/FieldDeclaration.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ForInStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ForStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/FunctionDeclaration.html290
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/FunctionExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/FunctionInvocation.html218
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/FunctionRef.html217
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/FunctionRefParameter.html217
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/IBinding.html343
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/IExtendedModifier.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/IFunctionBinding.html324
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/IMemberValuePairBinding.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/IPackageBinding.html185
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ITypeBinding.html547
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/IVariableBinding.html221
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/IfStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ImportDeclaration.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/InferredType.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/InfixExpression.Operator.html385
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/InfixExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Initializer.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/InstanceofExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/JSdoc.html265
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/JavaScriptUnit.html523
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/LabeledStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/LineComment.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ListExpression.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/MemberRef.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Message.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Modifier.ModifierKeyword.html315
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Modifier.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Name.html425
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/NullLiteral.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/NumberLiteral.html217
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ObjectLiteral.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ObjectLiteralField.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/PackageDeclaration.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ParameterizedType.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ParenthesizedExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/PostfixExpression.Operator.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/PostfixExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/PrefixExpression.Operator.html257
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/PrefixExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/PrimitiveType.Code.html298
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/PrimitiveType.html218
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ProgramElement.html410
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/QualifiedName.html211
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/QualifiedType.html211
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/RegularExpressionLiteral.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ReturnStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SimpleName.html529
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SimplePropertyDescriptor.html449
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SimpleType.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SingleVariableDeclaration.html241
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Statement.html529
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/StringLiteral.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/StructuralPropertyDescriptor.html291
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SuperConstructorInvocation.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SuperFieldAccess.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SuperMethodInvocation.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SwitchCase.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/SwitchStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/TagElement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/TextElement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ThisExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/ThrowStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/TryStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/Type.html628
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/TypeDeclaration.html248
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/TypeDeclarationStatement.html219
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/TypeLiteral.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/TypeParameter.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/UndefinedLiteral.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/VariableDeclaration.html185
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/VariableDeclarationExpression.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/VariableDeclarationFragment.html237
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/VariableDeclarationStatement.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/WhileStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/WildcardType.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/class-use/WithStatement.html209
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/package-frame.html273
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/package-summary.html646
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/package-tree.html179
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/package-use.html1079
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html782
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/ITrackedNodePosition.html245
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html413
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html1174
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html693
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/TargetSourceRangeComputer.SourceRange.html292
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/TargetSourceRangeComputer.html318
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/class-use/ASTRewrite.html185
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/class-use/ITrackedNodePosition.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/class-use/ImportRewrite.ImportRewriteContext.html247
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/class-use/ImportRewrite.html227
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/class-use/ListRewrite.html178
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/class-use/TargetSourceRangeComputer.SourceRange.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/class-use/TargetSourceRangeComputer.html192
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/package-frame.html53
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/package-summary.html190
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/package-tree.html154
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/dom/rewrite/package-use.html223
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html542
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html887
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/IGlobalVariable.html272
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/class-use/ICodeSnippetRequestor.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/class-use/IEvaluationContext.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/class-use/IGlobalVariable.html212
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/package-frame.html36
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/package-summary.html163
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/package-tree.html147
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/eval/package-use.html192
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html493
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/CodeFormatterApplication.html284
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html9300
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html530
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/class-use/CodeFormatter.html185
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/class-use/CodeFormatterApplication.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/class-use/DefaultCodeFormatterConstants.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/class-use/IndentManipulation.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/package-frame.html38
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/package-summary.html166
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/package-tree.html149
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/formatter/package-use.html166
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/DefaultInferrenceProvider.html412
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/IInferenceFile.html241
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/ImportRewriteSupport.html325
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferEngine.html857
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferOptions.html593
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferredAttribute.html427
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferredMember.html401
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferredMethod.html408
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferredType.html1038
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferrenceManager.html351
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html375
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/InferrenceSupportExtension.html264
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/RefactoringSupport.html281
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/ResolutionConfiguration.html287
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/DefaultInferrenceProvider.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/IInferenceFile.html192
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/ImportRewriteSupport.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferEngine.html200
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferOptions.html190
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferredAttribute.html254
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferredMember.html187
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferredMethod.html232
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferredType.html382
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferrenceManager.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferrenceProvider.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/InferrenceSupportExtension.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/RefactoringSupport.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/class-use/ResolutionConfiguration.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/package-frame.html67
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/package-summary.html240
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/package-tree.html162
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/infer/package-use.html289
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.html268
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/manipulation/class-use/JavaScriptManipulation.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/manipulation/package-frame.html32
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/manipulation/package-summary.html154
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/manipulation/package-tree.html149
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/manipulation/package-use.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/package-frame.html186
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/package-summary.html484
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/package-tree.html260
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/package-use.html1400
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptElementMapper.html226
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html1173
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/RenameTypeArguments.html324
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/class-use/IJavaScriptElementMapper.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/class-use/IJavaScriptRefactorings.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/class-use/RenameTypeArguments.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.html272
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/DeleteDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/EncapsulateFieldDescriptor.html270
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractConstantDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractInterfaceDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractLocalDescriptor.html270
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractMethodDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractSuperclassDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/GeneralizeTypeDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/InferTypeArgumentsDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineConstantDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineLocalVariableDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineMethodDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceFactoryDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceIndirectionDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceParameterDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.html265
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html488
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.html532
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.html404
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/PullUpDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/PushDownDescriptor.html271
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.html799
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameLocalVariableDescriptor.html404
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameResourceDescriptor.html392
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/UseSupertypeDescriptor.html391
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ChangeMethodSignatureDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ConvertAnonymousDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ConvertLocalVariableDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ConvertMemberTypeDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/CopyDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/DeleteDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/EncapsulateFieldDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ExtractConstantDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ExtractInterfaceDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ExtractLocalDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ExtractMethodDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/ExtractSuperclassDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/GeneralizeTypeDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/InferTypeArgumentsDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/InlineConstantDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/InlineLocalVariableDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/InlineMethodDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/IntroduceFactoryDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/IntroduceIndirectionDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/IntroduceParameterDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/JavaScriptRefactoringContribution.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/JavaScriptRefactoringDescriptor.html400
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/MoveDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/MoveMethodDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/MoveStaticMembersDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/PullUpDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/PushDownDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/RenameJavaScriptElementDescriptor.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/RenameLocalVariableDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/RenameResourceDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/class-use/UseSupertypeDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/package-frame.html92
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html274
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/package-tree.html155
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/descriptors/package-use.html185
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/package-frame.html45
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/package-summary.html174
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/package-tree.html156
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/refactoring/package-use.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/FieldDeclarationMatch.html276
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/FieldReferenceMatch.html338
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html760
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html428
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/LocalVariableDeclarationMatch.html276
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/LocalVariableReferenceMatch.html338
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/MethodDeclarationMatch.html276
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html438
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/PackageDeclarationMatch.html276
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/PackageReferenceMatch.html279
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/SearchDocument.html452
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/SearchEngine.html1035
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/SearchMatch.html877
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/SearchParticipant.html522
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/SearchPattern.html1245
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/SearchRequestor.html382
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/TypeDeclarationMatch.html277
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/TypeNameMatch.html457
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/TypeNameMatchRequestor.html283
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/TypeNameRequestor.html292
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/TypeParameterDeclarationMatch.html276
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/TypeParameterReferenceMatch.html279
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/TypeReferenceMatch.html384
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/FieldDeclarationMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/FieldReferenceMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/IJavaScriptSearchConstants.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/IJavaScriptSearchScope.html542
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/LocalVariableDeclarationMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/LocalVariableReferenceMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/MethodDeclarationMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/MethodReferenceMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/PackageDeclarationMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/PackageReferenceMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/SearchDocument.html347
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/SearchEngine.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/SearchMatch.html280
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/SearchParticipant.html489
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/SearchPattern.html348
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/SearchRequestor.html290
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/TypeDeclarationMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/TypeNameMatch.html194
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/TypeNameMatchRequestor.html198
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/TypeNameRequestor.html198
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/TypeParameterDeclarationMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/TypeParameterReferenceMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/class-use/TypeReferenceMatch.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/package-frame.html85
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/package-summary.html259
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/package-tree.html160
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/search/package-use.html325
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/util/IModifierConstants.html528
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/util/JavaScriptUnitSorter.html541
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/util/class-use/IModifierConstants.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/util/class-use/JavaScriptUnitSorter.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/util/package-frame.html43
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/util/package-summary.html168
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/util/package-tree.html154
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/core/util/package-use.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/DiskIndex.html242
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/EntryResult.html330
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/Index.html559
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/MemoryIndex.html224
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/class-use/DiskIndex.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/class-use/EntryResult.html178
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/class-use/Index.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/class-use/MemoryIndex.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/package-frame.html38
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/package-summary.html166
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/package-tree.html149
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/internal/core/index/package-use.html172
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryContainerUIExtension.html266
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html715
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/BasicLibraryContainer.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/Messages.html297
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/class-use/BasicBrowserLibraryContainerUIExtension.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/class-use/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/class-use/BasicLibraryContainer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/class-use/Messages.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/package-frame.html38
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/package-summary.html169
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/package-tree.html156
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/libraries/package-use.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/CodeGeneration.html943
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/CodeStyleConfiguration.html260
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/IContextMenuConstants.html550
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/IDocumentationReader.html253
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html403
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/IPackagesViewPart.html278
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/ISharedImages.html1206
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html647
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/IWorkingCopyManager.html317
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/IWorkingCopyManagerExtension.html244
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/IWorkingCopyProvider.html227
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JSdocContentAccess.html311
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaElementSorter.html311
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html289
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html659
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html687
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html1640
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaScriptLibrariesAction.html301
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaScriptSourceFoldersAction.html269
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaScriptSuperTypeAction.html269
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/JavaScriptUI.html1430
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/Messages.html223
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html429
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/PreferenceConstants.html7835
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.ProblemsLabelChangedEvent.html276
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html425
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.WorkBenchAdapter.html309
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.html323
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/StandardJavaScriptElementContentProvider.html527
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/CodeGeneration.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/CodeStyleConfiguration.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/IContextMenuConstants.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/IDocumentationReader.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/IJavaScriptElementSearchConstants.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/IPackagesViewPart.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/ISharedImages.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/ITypeHierarchyViewPart.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/IWorkingCopyManager.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/IWorkingCopyManagerExtension.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/IWorkingCopyProvider.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JSdocContentAccess.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaElementSorter.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaScriptElementComparator.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaScriptElementImageDescriptor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaScriptElementLabelProvider.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaScriptElementLabels.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaScriptLibrariesAction.html186
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaScriptSourceFoldersAction.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaScriptSuperTypeAction.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/JavaScriptUI.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/Messages.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/OverrideIndicatorLabelDecorator.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/PreferenceConstants.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/ProblemsLabelDecorator.ProblemsLabelChangedEvent.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/ProblemsLabelDecorator.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/ProjectLibraryRoot.WorkBenchAdapter.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/ProjectLibraryRoot.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/class-use/StandardJavaScriptElementContentProvider.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/package-frame.html97
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/package-summary.html292
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/package-tree.html167
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/package-use.html188
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/project/JsNature.html422
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/project/class-use/JsNature.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/project/package-frame.html32
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/project/package-summary.html156
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/project/package-tree.html149
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/project/package-use.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html607
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html780
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/refactoring/class-use/IRefactoringProcessorIds.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/refactoring/class-use/RenameSupport.html266
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/refactoring/package-frame.html43
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/refactoring/package-summary.html168
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/refactoring/package-tree.html154
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/refactoring/package-use.html166
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/ElementQuerySpecification.html287
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/IMatchPresentation.html266
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/IQueryParticipant.html285
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/ISearchRequestor.html220
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/PatternQuerySpecification.html332
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/QuerySpecification.html288
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/class-use/ElementQuerySpecification.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/class-use/IMatchPresentation.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/class-use/IQueryParticipant.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/class-use/ISearchRequestor.html178
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/class-use/PatternQuerySpecification.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/class-use/QuerySpecification.html213
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/package-frame.html51
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/package-summary.html190
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/package-tree.html156
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/search/package-use.html180
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/IColorManager.html234
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/IColorManagerExtension.html242
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html660
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html313
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/JavaScriptSourceViewerConfiguration.html741
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html450
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/class-use/IColorManager.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/class-use/IColorManagerExtension.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/class-use/IJavaScriptColorConstants.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/class-use/IJavaScriptPartitions.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/class-use/JavaScriptSourceViewerConfiguration.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/class-use/JavaScriptTextTools.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html445
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html315
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProvider.html287
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html287
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/class-use/DefaultJavaFoldingStructureProvider.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/class-use/IJavaFoldingPreferenceBlock.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/class-use/IJavaFoldingStructureProvider.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/class-use/IJavaFoldingStructureProviderExtension.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/package-frame.html47
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/package-summary.html191
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/package-tree.html155
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/folding/package-use.html185
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/AbstractProposalSorter.html317
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html607
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/CompletionProposalComparator.html308
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html321
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html445
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/IInvocationContext.html328
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposal.html223
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposalComputer.html320
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/IJavadocCompletionProcessor.html325
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/IProblemLocation.html375
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/IQuickAssistProcessor.html249
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/IQuickFixProcessor.html255
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/JavaContentAssistInvocationContext.html465
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/AbstractProposalSorter.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/CompletionProposalCollector.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/CompletionProposalComparator.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/CompletionProposalLabelProvider.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/ContentAssistInvocationContext.html210
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/IInvocationContext.html194
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/IJavaCompletionProposal.html214
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/IJavaCompletionProposalComputer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/IJavadocCompletionProcessor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/IProblemLocation.html186
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/IQuickAssistProcessor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/IQuickFixProcessor.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/class-use/JavaContentAssistInvocationContext.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/hover/IJavaEditorTextHover.html220
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/hover/class-use/IJavaEditorTextHover.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/hover/package-frame.html32
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/hover/package-summary.html155
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/hover/package-tree.html147
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/hover/package-use.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/package-frame.html65
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/package-summary.html216
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/package-tree.html160
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/java/package-use.html196
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/package-frame.html51
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/package-summary.html187
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/package-tree.html156
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/text/package-use.html187
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/BaseLibraryWizardPage.html425
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html637
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.ClasspathAttributeAccess.html303
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html422
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPage.html288
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPageExtension.html229
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPageExtension2.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html494
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/NewClassWizardPage.html466
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/NewContainerWizardPage.html361
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/NewElementWizardPage.html273
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/NewInterfaceWizardPage.html370
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/NewJavaProjectWizardPage.html511
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html467
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html286
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html1105
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/BaseLibraryWizardPage.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/BuildPathDialogAccess.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/ClasspathAttributeConfiguration.ClasspathAttributeAccess.html225
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/ClasspathAttributeConfiguration.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/IJsGlobalScopeContainerPage.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/IJsGlobalScopeContainerPageExtension.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/IJsGlobalScopeContainerPageExtension2.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/JavaCapabilityConfigurationPage.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/NewClassWizardPage.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/NewContainerWizardPage.html201
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/NewElementWizardPage.html234
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/NewInterfaceWizardPage.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/NewJavaProjectWizardPage.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/NewPackageWizardPage.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/NewTypeWizardPage.ImportsManager.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/class-use/NewTypeWizardPage.html184
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/package-frame.html71
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/package-summary.html234
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/package-tree.html163
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/ui/wizards/package-use.html208
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/CompilationUnitHelper.html263
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/DocumentChangeListenerToTextEdit.html298
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html2346
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html4722
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html4700
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/IJsTranslation.html630
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/IJsTranslator.html420
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html383
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/JsNameManglerUtil.html287
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/JsTranslation.html855
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapter.html385
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapterFactory.html295
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html586
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/Messages.html223
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html491
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/Util.html277
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/WebRootFinder.html294
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/CompilationUnitHelper.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/DocumentChangeListenerToTextEdit.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/HTML40Namespace.ElementName.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/HTML40Namespace.EntityName.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/HTML40Namespace.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/IJsTranslation.html280
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/IJsTranslator.html193
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/JsDataTypes.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/JsNameManglerUtil.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/JsTranslation.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/JsTranslationAdapter.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/JsTranslationAdapterFactory.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/JsTranslator.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/Messages.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/NodeHelper.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/Util.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/class-use/WebRootFinder.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/package-frame.html73
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/package-summary.html243
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/package-tree.html162
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/package-use.html228
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/IndexWorkspaceJob.html233
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/JSDTSearchDocumentDelegate.html487
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/JsIndexManager.html363
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/JsPathIndexer.html262
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchDocument.html453
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchParticipant.html438
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html475
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchSupport.html520
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/NullSearchDocument.html356
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/IndexWorkspaceJob.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/JSDTSearchDocumentDelegate.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/JsIndexManager.html176
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/JsPathIndexer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/JsSearchDocument.html174
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/JsSearchParticipant.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/JsSearchScope.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/JsSearchSupport.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/class-use/NullSearchDocument.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/package-frame.html48
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html195
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/package-tree.html160
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/javascript/search/package-use.html181
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/text/IJsPartitions.html208
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/text/class-use/IJsPartitions.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/text/package-frame.html32
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/text/package-summary.html155
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/text/package-tree.html147
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/core/text/package-use.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/Messages.html223
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/SetupProjectsWizzard.html298
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html368
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.html450
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/WebProjectJsGlobalScopeUIInitializer.html266
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/class-use/Messages.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/class-use/SetupProjectsWizzard.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/class-use/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/class-use/StructuredTextViewerConfigurationJSDT.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/class-use/WebProjectJsGlobalScopeUIInitializer.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/package-frame.html40
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/package-summary.html174
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/package-tree.html152
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/package-use.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/IJavaWebNode.html251
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterFactoryForJSDT.html273
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterForJs.html352
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html683
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/Messages.html223
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/class-use/IJavaWebNode.html177
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/class-use/JFaceNodeAdapterFactoryForJSDT.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/class-use/JFaceNodeAdapterForJs.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/class-use/JsJfaceNode.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/class-use/Messages.html140
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-frame.html49
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-summary.html185
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-tree.html161
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-use.html167
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/overview-frame.html100
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/overview-summary.html269
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/overview-tree.html1330
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/package-list30
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/resources/inherit.gifbin57 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/serialized-form.html268
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/html/api_reference/stylesheet.css29
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/index.html29
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/javadocBuild.xml190
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/javadocToc.xsl21
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/javadoctoc.xml35
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/jsdtdocs.css117
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/legal/index.html40
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/lib/ant-contrib-0.6.jarbin119512 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/lib/parseAPIPackages.jarbin7628 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/packages.xml1
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/plugin.properties3
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/plugin.xml25
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/plugins.xml8
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/schema.css66
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/srcFolders.txt8
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/htmlProject.html77
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/html/2.jpgbin32910 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/html/3.jpgbin42238 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/newhtml/2.jpgbin31425 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/newhtml/3.jpgbin27402 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/newjs/1.jpgbin40141 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/newjs/2.jpgbin32456 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/newjs/3.jpgbin29896 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/pure/1.jpgbin16835 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/pure/2.jpgbin33118 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/pure/3.jpgbin37721 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/img/pure/4.jpgbin30768 -> 0 bytes-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/index.html27
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/newhtmlFile.html73
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/newjsFile.html73
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/overview.html31
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/standalone.html27
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/started/standaloneProject.html83
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/toc.xml74
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/tocreference.xml14
-rw-r--r--features/org.eclipse.wst.jsdt.feature/.project17
-rw-r--r--features/org.eclipse.wst.jsdt.feature/.settings/org.eclipse.core.resources.prefs3
-rw-r--r--features/org.eclipse.wst.jsdt.feature/.settings/org.eclipse.core.runtime.prefs3
-rw-r--r--features/org.eclipse.wst.jsdt.feature/.settings/org.eclipse.jdt.core.prefs80
-rw-r--r--features/org.eclipse.wst.jsdt.feature/.settings/org.eclipse.jdt.ui.prefs4
-rw-r--r--features/org.eclipse.wst.jsdt.feature/.settings/org.eclipse.ltk.core.refactoring.prefs3
-rw-r--r--features/org.eclipse.wst.jsdt.feature/.settings/org.eclipse.pde.prefs16
-rw-r--r--features/org.eclipse.wst.jsdt.feature/build.properties3
-rw-r--r--features/org.eclipse.wst.jsdt.feature/feature.properties144
-rw-r--r--features/org.eclipse.wst.jsdt.feature/feature.xml66
-rw-r--r--features/org.eclipse.wst.jsdt.feature/license.html93
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateBundle/about.html27
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateBundle/about.ini31
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateBundle/about.mappings6
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateBundle/about.properties26
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateBundle/build.properties3
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateBundle/plugin.properties12
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateBundle/wtp_prod32.gifbin1752 -> 0 bytes-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateBundle/wtp_prod32.pngbin2672 -> 0 bytes-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateFeature/build.properties18
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateFeature/eclipse_update_120.jpgbin21695 -> 0 bytes-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateFeature/epl-v10.html328
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateFeature/feature.properties133
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplateFeature/license.html82
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplatePlugin/about.html27
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplatePlugin/about.ini31
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplatePlugin/about.mappings6
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplatePlugin/about.properties26
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplatePlugin/build.properties3
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplatePlugin/plugin.properties12
-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplatePlugin/wtp_prod32.gifbin1752 -> 0 bytes-rw-r--r--features/org.eclipse.wst.jsdt.feature/sourceTemplatePlugin/wtp_prod32.pngbin2672 -> 0 bytes-rw-r--r--features/org.eclipse.wst.jsdt_sdk.feature/.project17
-rw-r--r--features/org.eclipse.wst.jsdt_sdk.feature/build.properties6
-rw-r--r--features/org.eclipse.wst.jsdt_sdk.feature/feature.properties144
-rw-r--r--features/org.eclipse.wst.jsdt_sdk.feature/feature.xml32
-rw-r--r--features/org.eclipse.wst.jsdt_sdk.feature/license.html93
1444 files changed, 440 insertions, 484238 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/META-INF/MANIFEST.MF b/bundles/org.eclipse.wst.jsdt.core/META-INF/MANIFEST.MF
index f4661b85..248445db 100644
--- a/bundles/org.eclipse.wst.jsdt.core/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.wst.jsdt.core/META-INF/MANIFEST.MF
@@ -45,7 +45,7 @@ Export-Package: org.eclipse.wst.jsdt.core,
org.eclipse.wst.jsdt.internal.formatter.comment;x-internal:=true,
org.eclipse.wst.jsdt.internal.oaametadata,
org.eclipse.wst.jsdt.launching
-Bundle-Version: 1.0.100.qualifier
+Bundle-Version: 1.0.12.qualifier
Bundle-Activator: org.eclipse.wst.jsdt.core.JavaScriptCore
Require-Bundle: org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
diff --git a/bundles/org.eclipse.wst.jsdt.core/libraries/system.js b/bundles/org.eclipse.wst.jsdt.core/libraries/system.js
index 1019cccf..fe81200f 100644
--- a/bundles/org.eclipse.wst.jsdt.core/libraries/system.js
+++ b/bundles/org.eclipse.wst.jsdt.core/libraries/system.js
@@ -673,14 +673,14 @@ Function.prototype.apply=function(thisArg, argArray){};
* function call (thisArg, argArray)
* @param {Object} thisArg
- * @param {Array} argArray
+ * @param {Object} args
* @type Object
* @returns {Object}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
* @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html
*/
-Function.prototype.call=function(thisArg, argArray){};
+Function.prototype.call=function(thisArg, args){};
/**
* property length
* @type Number
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/IJavaScriptProject.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/IJavaScriptProject.java
index 602dec4b..98a1b67e 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/IJavaScriptProject.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/IJavaScriptProject.java
@@ -62,6 +62,9 @@ public interface IJavaScriptProject extends IParent, IJavaScriptElement, IOpenab
/* returns the projects scope file */
IFile getJSDTScopeFile();
+ /* returns the projects scope file */
+ IFile getJSDTScopeFile(boolean forceCreate);
+
/**
* Decodes the includepath entry that has been encoded in the given string
* in the context of this project.
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/JavaScriptCore.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/JavaScriptCore.java
index 6667b63e..26eeae39 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/JavaScriptCore.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/JavaScriptCore.java
@@ -4004,7 +4004,14 @@ public final class JavaScriptCore extends Plugin {
if (affectedProjects.length != respectiveContainers.length)
Assert.isTrue(false, "Projects and containers collections should have the same size"); //$NON-NLS-1$
SetContainerOperation operation = new SetContainerOperation(containerPath, affectedProjects, respectiveContainers);
- operation.runOperation(monitor);
+// operation.runOperation(monitor);
+
+ operation.progressMonitor=monitor;
+
+ operation.execute();
+
+
+
}
/**
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.java
index eb8e5fe4..0faa9e8e 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.java
@@ -84,6 +84,7 @@ public class SystemLibraryLocation implements LibraryLocation {
}
public SystemLibraryLocation(){
try {
+
IPath libraryRuntimePath = Platform.getStateLocation(Platform.getBundle(JavaScriptCore.PLUGIN_ID)).append( new String(LIBRARY_RUNTIME_DIRECTORY));
if(!libraryRuntimePath.toFile().exists()) {
libraryRuntimePath.toFile().mkdir();
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/ASTNode.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/ASTNode.java
index f3c149c8..73336b1d 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/ASTNode.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/ASTNode.java
@@ -2462,6 +2462,9 @@ public abstract class ASTNode {
* if none
*/
final void acceptChildren(ASTVisitor visitor, ASTNode.NodeList children) {
+ if(children == null){
+ return;
+ }
// use a cursor to keep track of where we are up to
// (the list may be changing under foot)
NodeList.Cursor cursor = children.newCursor();
@@ -2661,7 +2664,7 @@ public abstract class ASTNode {
* @return the size of this node in bytes
*/
abstract int memSize();
-
+
public ASTNode getBodyChild()
{
ASTNode bodyChild=this;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/NaiveASTFlattener.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/NaiveASTFlattener.java
index 4342a615..2389727f 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/NaiveASTFlattener.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/NaiveASTFlattener.java
@@ -497,7 +497,7 @@ class NaiveASTFlattener extends ASTVisitor {
printIndent();
node.getExpression().accept(this);
if (node.getParent().getNodeType()!=ASTNode.FOR_IN_STATEMENT)
- this.buffer.append(";\n");//$NON-NLS-1$
+ this.buffer.append(";\n");//$NON-NLS-1$
return false;
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferEngine.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferEngine.java
index 5b2f1421..704d49ea 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferEngine.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferEngine.java
@@ -477,7 +477,6 @@ public class InferEngine extends ASTVisitor {
else
{
attr = receiverType.addAttribute( fRef.token, assignment );
-
attr.type=exprType;
/*
* determine if static
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/CompletionEngine.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/CompletionEngine.java
index 7dc3e059..5e986e48 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/CompletionEngine.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/CompletionEngine.java
@@ -2503,7 +2503,6 @@ public final class CompletionEngine
// for now until we can change the UI.
CompilationResult result = new CompilationResult(sourceUnit, 1, 1, this.compilerOptions.maxProblemsPerUnit);
CompilationUnitDeclaration parsedUnit = this.parser.dietParse(sourceUnit, result, this.actualCompletionPosition);
-
// boolean completionNodeFound = false;
if (parsedUnit != null) {
if(DEBUG) {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/complete/CompletionParser.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/complete/CompletionParser.java
index b3cadd17..eed8949b 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/complete/CompletionParser.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/codeassist/complete/CompletionParser.java
@@ -812,10 +812,10 @@ private void buildMoreCompletionContext(Expression expression) {
Expression operatorExpression = null;
switch (info) {
case PLUS_PLUS :
- operatorExpression = new PrefixExpression(expression,IntLiteral.One, PLUS, expression.sourceStart);
+ operatorExpression = new PrefixExpression(expression,IntLiteral.getOne(), PLUS, expression.sourceStart);
break;
case MINUS_MINUS :
- operatorExpression = new PrefixExpression(expression,IntLiteral.One, MINUS, expression.sourceStart);
+ operatorExpression = new PrefixExpression(expression,IntLiteral.getOne(), MINUS, expression.sourceStart);
break;
default :
operatorExpression = new UnaryExpression(expression, info);
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/Compiler.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/Compiler.java
index fa7f0bc2..74ffcad8 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/Compiler.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/Compiler.java
@@ -7,6 +7,7 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
+ * Michael Spector <spektom@gmail.com> - Bug 243886
*******************************************************************************/
package org.eclipse.wst.jsdt.internal.compiler;
@@ -397,6 +398,9 @@ public class Compiler implements ITypeRequestor, ProblemSeverities {
CompilationUnitDeclaration unit,
CompilationResult result) {
+
+ if (this.options.onlyReportSyntaxErrors)
+ return;
if ((result == null) && (unit != null)) {
result = unit.compilationResult; // current unit being processed ?
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/AbstractMethodDeclaration.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/AbstractMethodDeclaration.java
index af06adb1..3e6bd145 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/AbstractMethodDeclaration.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/AbstractMethodDeclaration.java
@@ -137,7 +137,7 @@ public abstract class AbstractMethodDeclaration
}
boolean used = this.binding.isAbstract() || this.binding.isNative();
AnnotationBinding[][] paramAnnotations = null;
- for (int i = 0, length = this.arguments.length; i < length; i++) {
+ for (int i = 0, length = this.arguments.length; i < length && i < this.binding.parameters.length; i++) {
IArgument argument = this.arguments[i];
argument.bind(this.scope, this.binding.parameters[i], used);
// if (argument.getAnnotation() != null) {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/AllocationExpression.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/AllocationExpression.java
index f3930bb2..32ca0989 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/AllocationExpression.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/AllocationExpression.java
@@ -27,6 +27,7 @@ import org.eclipse.wst.jsdt.internal.compiler.lookup.MethodBinding;
import org.eclipse.wst.jsdt.internal.compiler.lookup.NestedTypeBinding;
import org.eclipse.wst.jsdt.internal.compiler.lookup.ProblemMethodBinding;
import org.eclipse.wst.jsdt.internal.compiler.lookup.ProblemReasons;
+import org.eclipse.wst.jsdt.internal.compiler.lookup.ProblemReferenceBinding;
import org.eclipse.wst.jsdt.internal.compiler.lookup.ReferenceBinding;
import org.eclipse.wst.jsdt.internal.compiler.lookup.SourceTypeBinding;
import org.eclipse.wst.jsdt.internal.compiler.lookup.SyntheticArgumentBinding;
@@ -68,7 +69,7 @@ public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, Fl
}
// record some dependency information for exception types
ReferenceBinding[] thrownExceptions;
- if (((thrownExceptions = this.binding.thrownExceptions).length) != 0) {
+ if (this.binding != null && this.binding.thrownExceptions != null && (thrownExceptions = this.binding.thrownExceptions).length != 0) {
// check exception handling
flowContext.checkExceptionHandlers(
thrownExceptions,
@@ -276,7 +277,7 @@ public TypeBinding resolveType(BlockScope scope) {
// return this.resolvedType;
// }
}
- if (this.resolvedType == null || this.resolvedType.isAnyType())
+ if (this.resolvedType == null || this.resolvedType.isAnyType()|| this.resolvedType instanceof ProblemReferenceBinding)
{
this.binding= new ProblemMethodBinding(
TypeConstants.INIT,
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/Assignment.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/Assignment.java
index 5fce1b85..7413e349 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/Assignment.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/Assignment.java
@@ -92,7 +92,7 @@ void checkAssignment(BlockScope scope, TypeBinding lhsType, TypeBinding rhsType)
// } else if (leftField != null && !leftField.isStatic() && leftField.declaringClass != null /*length pseudo field*/&& leftField.declaringClass.isRawType()) {
// scope.problemReporter().unsafeRawFieldAssignment(leftField, rhsType, this.lhs);
// } else
- if (rhsType.needsUncheckedConversion(lhsType)) {
+ if (rhsType != null && rhsType.needsUncheckedConversion(lhsType)) {
scope.problemReporter().unsafeTypeConversion(this.expression, rhsType, lhsType);
}
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/CombinedBinaryExpression.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/CombinedBinaryExpression.java
index ce5c0774..01c9d2d6 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/CombinedBinaryExpression.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/CombinedBinaryExpression.java
@@ -130,22 +130,22 @@ public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext,
return super.analyseCode(currentScope, flowContext, flowInfo);
}
if (this.referencesTable[0] != null && this.referencesTable[0].resolvedType != null) {
- BinaryExpression cursor;
- if ((cursor = this.referencesTable[0]).resolvedType.id !=
- TypeIds.T_JavaLangString) {
- cursor.left.checkNPE(currentScope, flowContext, flowInfo);
- }
- flowInfo = cursor.left.analyseCode(currentScope, flowContext, flowInfo).
- unconditionalInits();
- for (int i = 0, end = this.arity; i < end; i ++) {
- if ((cursor = this.referencesTable[i]).resolvedType.id !=
+ BinaryExpression cursor;
+ if ((cursor = this.referencesTable[0]).resolvedType.id !=
TypeIds.T_JavaLangString) {
- cursor.right.checkNPE(currentScope, flowContext, flowInfo);
+ cursor.left.checkNPE(currentScope, flowContext, flowInfo);
+ }
+ flowInfo = cursor.left.analyseCode(currentScope, flowContext, flowInfo).
+ unconditionalInits();
+ for (int i = 0, end = this.arity; i < end; i ++) {
+ if ((cursor = this.referencesTable[i]).resolvedType.id !=
+ TypeIds.T_JavaLangString) {
+ cursor.right.checkNPE(currentScope, flowContext, flowInfo);
+ }
+ flowInfo = cursor.right.
+ analyseCode(currentScope, flowContext, flowInfo).
+ unconditionalInits();
}
- flowInfo = cursor.right.
- analyseCode(currentScope, flowContext, flowInfo).
- unconditionalInits();
- }
}
if (this.resolvedType.id != TypeIds.T_JavaLangString) {
this.right.checkNPE(currentScope, flowContext, flowInfo);
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/Expression.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/Expression.java
index a79b16ae..625ce3b1 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/Expression.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/Expression.java
@@ -47,7 +47,7 @@ public abstract class Expression extends Statement implements IExpression {
//Expression is a subclass of Statement. See the message isValidJavaStatement()
public int implicitConversion;
- public TypeBinding resolvedType;
+ public TypeBinding resolvedType = TypeBinding.UNKNOWN;
public static final boolean isConstantValueRepresentable(Constant constant, int constantTypeID, int targetTypeID) {
//true if there is no loss of precision while casting.
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/ForStatement.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/ForStatement.java
index 9fb9cda2..0b7fb903 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/ForStatement.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/ForStatement.java
@@ -259,12 +259,12 @@ public class ForStatement extends Statement implements IForStatement {
Assignment as = ((Assignment)initializations[i]);
if (as.getLeftHandSide() instanceof SingleNameReference)
{
- LocalVariableBinding bind1 = as.localVariableBinding();
+ LocalVariableBinding bind1 = as.localVariableBinding();
if(bind1==null || bind1.declaringScope instanceof CompilationUnitScope){
- upperScope.problemReporter().looseVariableDecleration(this, as);
+ upperScope.problemReporter().looseVariableDecleration(this, as);
+ }
}
}
- }
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/IntLiteral.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/IntLiteral.java
index 6b3760b7..76210cc5 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/IntLiteral.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/IntLiteral.java
@@ -23,8 +23,6 @@ import org.eclipse.wst.jsdt.internal.compiler.parser.ScannerHelper;
public class IntLiteral extends NumberLiteral implements IIntLiteral {
public int value;
- public static final IntLiteral
- One = new IntLiteral(new char[]{'1'},0,0,1);//used for ++ and --
static final Constant FORMAT_ERROR = DoubleConstant.fromValue(1.0/0.0); // NaN;
public IntLiteral(char[] token, int s, int e) {
@@ -51,7 +49,6 @@ public void computeConstant() {
//which is legal if used with a - as prefix....cool....
//notice that Integer.MIN_VALUE == -2147483648
- if (this == One) { constant = IntConstant.fromValue(1); return ;}
int length = source.length;
long computedValue = 0L;
@@ -147,4 +144,10 @@ public int getASTType() {
return IASTNode.INT_LITERAL;
}
+
+public static IntLiteral getOne()
+{
+ return new IntLiteral(new char[]{'1'},0,0,1);//used for ++ and --
+}
+
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/LocalDeclaration.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/LocalDeclaration.java
index 19909026..3fb03182 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/LocalDeclaration.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/LocalDeclaration.java
@@ -125,13 +125,14 @@ public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, Fl
return variableType;
}
+
public void resolve(BlockScope scope) {
resolve0(scope);
if (this.nextLocal!=null)
this.nextLocal.resolve(scope);
}
-
+
private void resolve0(BlockScope scope) {
// create a binding and add it to the scope
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/ThrowStatement.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/ThrowStatement.java
index ee7e58a3..82cc35ee 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/ThrowStatement.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/ThrowStatement.java
@@ -16,6 +16,7 @@ import org.eclipse.wst.jsdt.internal.compiler.ASTVisitor;
import org.eclipse.wst.jsdt.internal.compiler.flow.FlowContext;
import org.eclipse.wst.jsdt.internal.compiler.flow.FlowInfo;
import org.eclipse.wst.jsdt.internal.compiler.lookup.BlockScope;
+import org.eclipse.wst.jsdt.internal.compiler.lookup.ProblemReferenceBinding;
import org.eclipse.wst.jsdt.internal.compiler.lookup.TypeBinding;
public class ThrowStatement extends Statement implements IThrowStatement {
@@ -44,16 +45,8 @@ public StringBuffer printStatement(int indent, StringBuffer output) {
public void resolve(BlockScope scope) {
this.exceptionType = this.exception.resolveType(scope);
- if (this.exceptionType != null && this.exceptionType.isValidBinding()) {
-// if (this.exceptionType == TypeBinding.NULL) {
-// if (scope.compilerOptions().complianceLevel <= ClassFileConstants.JDK1_3){
-// // if compliant with 1.4, this problem will not be reported
-// scope.problemReporter().cannotThrowNull(this.exception);
-// }
-// } else if (exceptionType.findSuperTypeErasingTo(TypeIds.T_JavaLangThrowable, true) == null) {
-// scope.problemReporter().cannotThrowType(this.exception, this.exceptionType);
-// }
-// this.exception.computeConversion(scope, this.exceptionType, this.exceptionType);
+ if (this.exceptionType == null || !this.exceptionType.isValidBinding()) {
+ this.exceptionType = new ProblemReferenceBinding(new char[0][0],null,0);
}
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/TypeDeclaration.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/TypeDeclaration.java
index 5692b4fb..e98b2459 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/TypeDeclaration.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/ast/TypeDeclaration.java
@@ -65,7 +65,7 @@ public class TypeDeclaration extends Statement implements ProblemSeverities, Ref
public FieldDeclaration[] fields;
public AbstractMethodDeclaration[] methods;
public TypeDeclaration[] memberTypes;
- public SourceTypeBinding binding;
+ public SourceTypeBinding binding= new SourceTypeBinding(null,null,null);
public ClassScope scope;
public MethodScope initializerScope;
public MethodScope staticInitializerScope;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/batch/Main.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/batch/Main.java
index 7700917b..e78d384b 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/batch/Main.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/batch/Main.java
@@ -1366,7 +1366,7 @@ public class Main implements ProblemSeverities, SuffixConstants {
public boolean showProgress = false;
public long startTime;
-
+
public boolean showError=true;
public boolean systemExitWhenFinished = true;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/flow/UnconditionalFlowInfo.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/flow/UnconditionalFlowInfo.java
index f491a631..6c225691 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/flow/UnconditionalFlowInfo.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/flow/UnconditionalFlowInfo.java
@@ -1162,7 +1162,7 @@ public void markAsDefinitelyAssigned(FieldBinding field) {
}
public void markAsDefinitelyAssigned(LocalVariableBinding local) {
- if (this != DEAD_END)
+ if (this != DEAD_END && local != null)
{
markAsDefinitelyAssigned(getLocalID(local));
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/impl/CompilerOptions.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/impl/CompilerOptions.java
index f893f3be..ae290ec2 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/impl/CompilerOptions.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/impl/CompilerOptions.java
@@ -357,11 +357,19 @@ public class CompilerOptions {
public InferOptions inferOptions=new InferOptions();
+ public boolean onlyReportSyntaxErrors=false;
+
+
/**
* Initializing the compiler options with defaults
*/
public CompilerOptions(){
// use default options
+ try {
+ this.onlyReportSyntaxErrors=JavaScriptCore.getPlugin().getPluginPreferences().getBoolean("onlySyntaxErrors");
+ } catch (Exception ex)
+ {this.onlyReportSyntaxErrors=false;}
+
}
/**
@@ -685,6 +693,11 @@ public class CompilerOptions {
public void set(Map optionsMap) {
+ try {
+ this.onlyReportSyntaxErrors=JavaScriptCore.getPlugin().getPluginPreferences().getBoolean("onlySyntaxErrors");
+ } catch (Exception ex)
+ {this.onlyReportSyntaxErrors=false;}
+
Object optionValue;
if ((optionValue = optionsMap.get(OPTION_LocalVariableAttribute)) != null) {
if (GENERATE.equals(optionValue)) {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/CompilationUnitBinding.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/CompilationUnitBinding.java
index 2101f978..2c4f61e4 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/CompilationUnitBinding.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/CompilationUnitBinding.java
@@ -553,7 +553,7 @@ public class CompilationUnitBinding extends SourceTypeBinding {
FunctionExpression functionExpression = (FunctionExpression) ((Assignment)statements[i]).expression;
if (functionExpression.methodDeclaration !=null && functionExpression.methodDeclaration.binding==binding)
return functionExpression.methodDeclaration;
- }
+ }
}
class MethodFinder extends ASTVisitor
@@ -562,6 +562,7 @@ public class CompilationUnitBinding extends SourceTypeBinding {
MethodDeclaration method;
MethodFinder(MethodBinding binding)
{this.binding=binding;}
+
public boolean visit(MethodDeclaration methodDeclaration, Scope scope) {
if (methodDeclaration.binding==this.binding)
{
@@ -601,7 +602,7 @@ public class CompilationUnitBinding extends SourceTypeBinding {
public boolean visit(ThisReference thisReference, // not possible to contain method
ClassScope scope) {
return false;
- }
+ }
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java
index 3f137c3a..c20d66f4 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LibraryAPIsScope.java
@@ -63,6 +63,10 @@ public PackageBinding getDefaultPackage() {
public TypeBinding resolveType(String name)
{
+
+ if (name==null)
+ return TypeBinding.ANY;
+
TypeBinding binding = (TypeBinding)this.resolvedTypes.get(name);
if (binding!=null)
return binding;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LookupEnvironment.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LookupEnvironment.java
index 37c1b18d..e7e36fc2 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LookupEnvironment.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/LookupEnvironment.java
@@ -177,6 +177,11 @@ void addUnitsContainingBinding(PackageBinding packageBinding, char[] name, int m
if (!acceptedCompilationUnits.contains(fileName)) {
// the type was found as a .js file, try to build it then search the cache
acceptedCompilationUnits.add(fileName);
+// if (compilationUnits[i] instanceof MetadataFile)
+// {
+// typeRequestor.accept(((MetadataFile)compilationUnits[i]).getAPIs());
+// }
+// else
typeRequestor.accept(compilationUnits[i], answer
.getAccessRestriction());
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/SourceTypeBinding.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/SourceTypeBinding.java
index 2a0ded65..9e1e4d07 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/SourceTypeBinding.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/SourceTypeBinding.java
@@ -973,7 +973,7 @@ private MethodBinding getExactMethod0(char[] selector, TypeBinding[] argumentTyp
}
}
// check dup collisions
- boolean isSource15 = this.scope.compilerOptions().sourceLevel >= ClassFileConstants.JDK1_5;
+ boolean isSource15 = this.scope!=null && this.scope.compilerOptions().sourceLevel >= ClassFileConstants.JDK1_5;
for (int i = start; i <= end; i++) {
MethodBinding method1 = this.methods[i];
for (int j = end; j > i; j--) {
@@ -1116,7 +1116,7 @@ private MethodBinding[] getMethods0(char[] selector) {
} else {
return Binding.NO_METHODS;
}
- boolean isSource15 = this.scope.compilerOptions().sourceLevel >= ClassFileConstants.JDK1_5;
+ boolean isSource15 = this.scope!=null && this.scope.compilerOptions().sourceLevel >= ClassFileConstants.JDK1_5;
for (int i = 0, length = result.length - 1; i < length; i++) {
MethodBinding method = result[i];
for (int j = length; j > i; j--) {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/parser/Parser.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/parser/Parser.java
index 336abec1..d7beb48d 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/parser/Parser.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/parser/Parser.java
@@ -7542,14 +7542,14 @@ protected void consumeUnaryExpression(int op, boolean post) {
this.expressionStack[this.expressionPtr] =
new PostfixExpression(
leftHandSide,
- IntLiteral.One,
+ IntLiteral.getOne(),
op,
this.endStatementPosition);
} else {
this.expressionStack[this.expressionPtr] =
new PrefixExpression(
leftHandSide,
- IntLiteral.One,
+ IntLiteral.getOne(),
op,
this.intStack[this.intPtr--]);
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/problem/ProblemReporter.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/problem/ProblemReporter.java
index ef68accf..07cb888a 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/problem/ProblemReporter.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/problem/ProblemReporter.java
@@ -7,6 +7,7 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
+ * Michael Spector <spektom@gmail.com> - Bug 243886
*******************************************************************************/
package org.eclipse.wst.jsdt.internal.compiler.problem;
@@ -1115,7 +1116,12 @@ public void codeSnippetMissingMethod(String className, String missingMethod, Str
* to indicate that this problem is configurable through options
*/
public int computeSeverity(int problemID){
+
+ if (this.options.onlyReportSyntaxErrors && (problemID & IProblem.Syntax) == 0) {
+ return ProblemSeverities.Ignore;
+ }
+
switch (problemID) {
case IProblem.Task :
return ProblemSeverities.Warning;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/ClassFile.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/ClassFile.java
index 1a9e467f..fe6952dc 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/ClassFile.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/ClassFile.java
@@ -495,10 +495,10 @@ protected void getHandleMemento(StringBuffer buff) {
&& root.getPath().lastSegment().equalsIgnoreCase(getElementName()))
) {
- ((JavaElement)getParent()).getHandleMemento(buff);
- buff.append(getHandleMementoDelimiter());
- escapeMementoName(buff, getPath().toPortableString());
-}
+ ((JavaElement)getParent()).getHandleMemento(buff);
+ buff.append(getHandleMementoDelimiter());
+ escapeMementoName(buff, getPath().toPortableString());
+ }
else
super.getHandleMemento(buff);
} catch (JavaScriptModelException e) {
@@ -635,7 +635,7 @@ private IStatus validateClassFile() {
if (root.getKind() != IPackageFragmentRoot.K_BINARY)
{
if (((PackageFragment)this.getParent()).getKind()!= IPackageFragmentRoot.K_BINARY)
- return new JavaModelStatus(IJavaScriptModelStatusConstants.INVALID_ELEMENT_TYPES, root);
+ return new JavaModelStatus(IJavaScriptModelStatusConstants.INVALID_ELEMENT_TYPES, root);
}
} catch (JavaScriptModelException e) {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaModelManager.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaModelManager.java
index 1b33ebab..ac10426c 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaModelManager.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaModelManager.java
@@ -1875,9 +1875,9 @@ public class JavaModelManager implements ISaveParticipant, IContentTypeChangeLis
public PerProjectInfo getPerProjectInfoCheckExistence(IProject project) throws JavaScriptModelException {
JavaModelManager.PerProjectInfo info = getPerProjectInfo(project, false /* don't create info */);
if (info == null) {
- if (!JavaProject.hasJSDTScope(project)&& !JavaProject.hasJavaNature(project)) {
- throw ((JavaProject)JavaScriptCore.create(project)).newNotPresentException();
- }
+// continue even if not js project if (!JavaProject.hasJSDTScope(project)&& !JavaProject.hasJavaNature(project)) {
+// throw ((JavaProject)JavaScriptCore.create(project)).newNotPresentException();
+// }
info = getPerProjectInfo(project, true /* create info */);
}
return info;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaProject.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaProject.java
index 5411b1f6..8efda2c9 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaProject.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/JavaProject.java
@@ -183,9 +183,14 @@ public class JavaProject
}
public IFile getJSDTScopeFile() {
+ return getJSDTScopeFile(false);
+ }
+
+ public IFile getJSDTScopeFile(boolean forceCreate) {
+
// Return the projects .jsdtscope file
IFolder rscPath = this.project.getFolder(JavaProject.SHARED_PROPERTIES_DIRECTORY);
- if(!rscPath.exists())
+ if(!rscPath.exists()&&forceCreate)
try {
rscPath.create(true, true, new NullProgressMonitor());
}
@@ -2741,7 +2746,7 @@ public class JavaProject
// actual file saving
try {
- setSharedProperty(getJSDTScopeFile().getProjectRelativePath().toString(), encodeClasspath(newClasspath, newOutputLocation, true, unknownElements));
+ setSharedProperty(getJSDTScopeFile(true).getProjectRelativePath().toString(), encodeClasspath(newClasspath, newOutputLocation, true, unknownElements));
return true;
} catch (CoreException e) {
throw new JavaScriptModelException(e);
@@ -2869,7 +2874,7 @@ public class JavaProject
this.project = project;
this.parent = JavaModelManager.getJavaModelManager().getJavaModel();
/* Make sure the scope file is properly set. */
- getJSDTScopeFile();
+ getJSDTScopeFile(true);
}
/**
@@ -3086,7 +3091,7 @@ public class JavaProject
try {
IFolder rscPath = this.project.getFolder(JavaProject.SHARED_PROPERTIES_DIRECTORY);
- if(!rscPath.exists()) rscPath.create(true, true, new NullProgressMonitor());
+// if(!rscPath.exists()) rscPath.create(true, true, new NullProgressMonitor());
IPath fullPath = new Path(JavaProject.SHARED_PROPERTIES_DIRECTORY);//.append(LibrarySuperType.SUPER_TYPE_NAME);
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryFragmentRoot.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryFragmentRoot.java
index 23deabd8..4c9a85a2 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryFragmentRoot.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryFragmentRoot.java
@@ -34,7 +34,7 @@ public class LibraryFragmentRoot extends PackageFragmentRoot{
protected final IPath libraryPath;
protected boolean[] fLangeRuntime= new boolean[] {false,false};
-
+
protected LibraryFragmentRoot(IPath jarPath, JavaProject project) {
super(null, project);
this.libraryPath = jarPath;
@@ -96,10 +96,10 @@ public class LibraryFragmentRoot extends PackageFragmentRoot{
ArrayList vChildren = new ArrayList(5);
if (!isDirectory())
{
- LibraryPackageFragment packFrag= new LibraryPackageFragment(this, name);
- LibraryPackageFragmentInfo fragInfo= new LibraryPackageFragmentInfo();
-
- packFrag.computeChildren(fragInfo);
+ LibraryPackageFragment packFrag= new LibraryPackageFragment(this, name);
+ LibraryPackageFragmentInfo fragInfo= new LibraryPackageFragmentInfo();
+
+ packFrag.computeChildren(fragInfo);
newElements.put(packFrag, fragInfo);
vChildren.add(packFrag);
}
@@ -113,7 +113,7 @@ public class LibraryFragmentRoot extends PackageFragmentRoot{
return true;
}
-
+
protected void computeDirectoryChildren(File file, boolean isIncluded, String[] pkgName, ArrayList vChildren) throws JavaScriptModelException {
if (isIncluded) {
@@ -153,6 +153,7 @@ public class LibraryFragmentRoot extends PackageFragmentRoot{
}
}
+
protected Object createElementInfo() {
return new LibraryFragmentRootInfo();
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryPackageFragment.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryPackageFragment.java
index e4a02a40..ebf51a3b 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryPackageFragment.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/LibraryPackageFragment.java
@@ -50,11 +50,11 @@ protected LibraryPackageFragment(PackageFragmentRoot root, String[] names) {
*/
protected boolean computeChildren(OpenableElementInfo info) {
String name = this.getPackageFragmentRoot().getPath().toOSString();
- ClassFile classFile = new ClassFile(this,name);
+ ClassFile classFile = new ClassFile(this,name);
// JavaScriptUnit cu= new JavaScriptUnit(this, this.getPackageFragmentRoot().getPath().toOSString(), DefaultWorkingCopyOwner.PRIMARY);
- IJavaScriptElement[] children= new IJavaScriptElement[]{classFile};
- info.setChildren(children);
- return true;
+ IJavaScriptElement[] children= new IJavaScriptElement[]{classFile};
+ info.setChildren(children);
+ return true;
}
/**
@@ -84,11 +84,11 @@ protected void generateInfos(Object info, HashMap newElements, IProgressMonitor
if (!getLibraryFragmentRoot().isDirectory())
{
- Openable openableParent = (Openable)this.parent;
- if (!openableParent.isOpen()) {
- openableParent.generateInfos(openableParent.createElementInfo(), newElements, pm);
+ Openable openableParent = (Openable)this.parent;
+ if (!openableParent.isOpen()) {
+ openableParent.generateInfos(openableParent.createElementInfo(), newElements, pm);
+ }
}
-}
else
super.generateInfos(info, newElements, pm);
}
@@ -198,13 +198,13 @@ public IClassFile getClassFile(String classFileName) {
LibraryFragmentRoot libraryFragmentRoot = getLibraryFragmentRoot();
if (!libraryFragmentRoot.isDirectory())
{
- IPath path = getLibraryFragmentRoot().getPath();
-// if (org.eclipse.wst.jsdt.internal.compiler.util.Util.isClassFileName(path.lastSegment().toCharArray())
-// && path.lastSegment().equalsIgnoreCase(classFileName))
-// {
- if(path.toOSString().endsWith(classFileName)
- || path.isPrefixOf(new Path(classFileName))) {
- return new ClassFile(this, path.toOSString());
+ IPath path = getLibraryFragmentRoot().getPath();
+// if (org.eclipse.wst.jsdt.internal.compiler.util.Util.isClassFileName(path.lastSegment().toCharArray())
+// && path.lastSegment().equalsIgnoreCase(classFileName))
+// {
+ if(path.toOSString().endsWith(classFileName)
+ || path.isPrefixOf(new Path(classFileName))) {
+ return new ClassFile(this, path.toOSString());
}
}
else
@@ -218,7 +218,6 @@ public IClassFile getClassFile(String classFileName) {
return (!Util.isMetadataFileName(classFileName)) ? (IClassFile)new ClassFile(this,filename) : (IClassFile)new MetadataFile(this,filename);
}
-
return super.getClassFile(classFileName);
}
public String getDisplayName() {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/MetadataFile.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/MetadataFile.java
index 738cb67d..bc26d9cf 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/MetadataFile.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/MetadataFile.java
@@ -20,7 +20,6 @@ import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.ResourcesPlugin;
-import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Path;
@@ -32,6 +31,7 @@ import org.eclipse.wst.jsdt.core.IField;
import org.eclipse.wst.jsdt.core.IFunction;
import org.eclipse.wst.jsdt.core.IJavaScriptElement;
import org.eclipse.wst.jsdt.core.IJavaScriptUnit;
+import org.eclipse.wst.jsdt.core.IMember;
import org.eclipse.wst.jsdt.core.IProblemRequestor;
import org.eclipse.wst.jsdt.core.ISourceRange;
import org.eclipse.wst.jsdt.core.IType;
@@ -40,6 +40,8 @@ import org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer;
import org.eclipse.wst.jsdt.core.WorkingCopyOwner;
import org.eclipse.wst.jsdt.internal.core.util.MementoTokenizer;
import org.eclipse.wst.jsdt.internal.core.util.Util;
+import org.eclipse.wst.jsdt.internal.oaametadata.ClassData;
+import org.eclipse.wst.jsdt.internal.oaametadata.DocumentedElement;
import org.eclipse.wst.jsdt.internal.oaametadata.IOAAMetaDataConstants;
import org.eclipse.wst.jsdt.internal.oaametadata.LibraryAPIs;
import org.eclipse.wst.jsdt.internal.oaametadata.MetadataReader;
@@ -136,9 +138,10 @@ public class MetadataFile extends Openable implements
try {
apis = MetadataReader.readAPIsFromStream(new InputSource(file.getContents()),file.getLocation().toOSString());
apis.fileName=file.getFullPath().toPortableString();
- } catch (CoreException e) {
+ } catch (Exception e) {
Util.log(e, "error reading metadata");
apis=new LibraryAPIs();
+ apis.fileName=file.getFullPath().toPortableString();
}
}
return apis;
@@ -341,4 +344,33 @@ public class MetadataFile extends Openable implements
return (me!=null);
}
+
+ public DocumentedElement getDocumentation(IMember member)
+ {
+ IJavaScriptElement parent = member.getParent();
+ String elementName = member.getElementName();
+ LibraryAPIs apis = getAPIs();
+ switch (member.getElementType()) {
+ case IJavaScriptElement.TYPE:
+ return apis.getClass(elementName);
+
+ case IJavaScriptElement.METHOD:
+ if (parent.equals(this))
+ return apis.getGlobalMethod(elementName);
+ ClassData clazz = apis.getClass(parent.getElementName());
+ if (clazz!=null)
+ return clazz.getMethod(elementName);
+ return null;
+
+ case IJavaScriptElement.FIELD:
+ if (parent.equals(this))
+ return apis.getGlobalVar(elementName);
+ clazz = apis.getClass(parent.getElementName());
+ if (clazz!=null)
+ return clazz.getField(elementName);
+ return null;
+
+ }
+ return null;
+ }
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/NameLookup.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/NameLookup.java
index aa467b55..9495ab42 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/NameLookup.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/NameLookup.java
@@ -2195,9 +2195,10 @@ public class NameLookup implements SuffixConstants {
progressMonitor);
if (bindingAcceptor.getFoundPath()!=null)
{
- for (Iterator iterator = bindingAcceptor.getFoundPaths().iterator(); iterator
- .hasNext();) {
- String path = (String) iterator.next();
+
+ Object[] foundPaths = bindingAcceptor.getFoundPaths().toArray();
+ for (int i = 0; i < foundPaths.length; ++i) {
+ String path = (String) foundPaths[i];
IOpenable openable ; //= createOpenable(getRestrictedAccessRequestor().getFoundPath(), this.searchScope);
// if (openable!=null)
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/PackageFragmentRoot.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/PackageFragmentRoot.java
index 0896cf4e..9eba0eb1 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/PackageFragmentRoot.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/PackageFragmentRoot.java
@@ -790,7 +790,7 @@ public boolean isExternal() {
* Validate whether this package fragment root is on the classpath of its project.
*/
protected IStatus validateOnClasspath() {
- return Status.OK_STATUS;
+ return Status.OK_STATUS;
// IPath path = this.getPath();
// try {
// // check package fragment root on classpath of its project
@@ -804,7 +804,7 @@ protected IStatus validateOnClasspath() {
// return e.getJavaScriptModelStatus();
// }
// return new JavaModelStatus(IJavaScriptModelStatusConstants.ELEMENT_NOT_ON_CLASSPATH, this);
- }
+}
/*
* @see org.eclipse.wst.jsdt.core.IPackageFragmentRoot#move
*/
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/SetContainerOperation.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/SetContainerOperation.java
index 1d99f400..1b2d329e 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/SetContainerOperation.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/SetContainerOperation.java
@@ -37,6 +37,11 @@ public class SetContainerOperation extends ChangeClasspathOperation {
}
protected void executeOperation() throws JavaScriptModelException {
+ execute();
+ }
+
+ public void execute() throws JavaScriptModelException {
+
checkCanceled();
try {
beginTask("", 1); //$NON-NLS-1$
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/AbstractImageBuilder.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/AbstractImageBuilder.java
index 6bd7db7f..d9a419d4 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/AbstractImageBuilder.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/AbstractImageBuilder.java
@@ -156,7 +156,7 @@ public void acceptResult(CompilationResult result) {
if (result.hasAnnotations && this.filesWithAnnotations != null) // only initialized if an annotation processor is attached
this.filesWithAnnotations.add(compilationUnit);
- finishedWith(typeLocator, result, compilationUnit.getMainTypeName(), null, null);
+ finishedWith(typeLocator, result, compilationUnit.getMainTypeName(), new ArrayList(), new ArrayList());
notifier.compiled(compilationUnit);
}
}
@@ -200,7 +200,7 @@ protected void addAllSourceFiles(final ArrayList sourceFiles) throws CoreExcepti
return inclusionPatterns != null;
}
}
- }
+ }
return true;
}
},
@@ -385,6 +385,7 @@ protected void finishedWith(String sourceLocator, CompilationResult result, char
+
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.internal.core.builder.ICompilationUnitLocator#fromIFile(org.eclipse.core.resources.IFile)
*/
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/JavaBuilder.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/JavaBuilder.java
index 25cf15af..5daa39ce 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/JavaBuilder.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/builder/JavaBuilder.java
@@ -289,7 +289,7 @@ private void buildAll() {
clearLastState();
BatchImageBuilder imageBuilder = new BatchImageBuilder(this, true);
imageBuilder.build();
- //recordNewState(imageBuilder.newState);
+ recordNewState(imageBuilder.newState);
}
private void buildDeltas(SimpleLookupTable deltas) {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/dom/rewrite/ASTRewriteFlattener.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/dom/rewrite/ASTRewriteFlattener.java
index 3c2d3915..9575051f 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/dom/rewrite/ASTRewriteFlattener.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/dom/rewrite/ASTRewriteFlattener.java
@@ -534,7 +534,7 @@ public class ASTRewriteFlattener extends ASTVisitor {
public boolean visit(ExpressionStatement node) {
getChildNode(node, ExpressionStatement.EXPRESSION_PROPERTY).accept(this);
if (node.getParent().getNodeType()!=ASTNode.FOR_IN_STATEMENT)
- this.result.append(';');
+ this.result.append(';');
return false;
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddFolderToIndex.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddFolderToIndex.java
index cb93cf47..71dfdbdd 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddFolderToIndex.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddFolderToIndex.java
@@ -61,7 +61,8 @@ class AddFolderToIndex extends IndexRequest {
new IResourceProxyVisitor() {
public boolean visit(IResourceProxy proxy) /* throws CoreException */{
if (proxy.getType() == IResource.FILE) {
- if (org.eclipse.wst.jsdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName()))
+ if (org.eclipse.wst.jsdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())
+ ||org.eclipse.wst.jsdt.internal.core.util.Util.isMetadataFileName(proxy.getName()))
indexManager.addSource((IFile) proxy.requestResource(), container, parser);
return false;
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddLibraryFileToIndex.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddLibraryFileToIndex.java
index 9822fddb..2b99cfb3 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddLibraryFileToIndex.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/AddLibraryFileToIndex.java
@@ -85,13 +85,13 @@ class AddLibraryFileToIndex extends IndexRequest {
// external file -> it is ok to use toFile()
libraryFilePath = (Path) this.containerPath;
// path is already canonical since coming from a library classpath entry
-
+
if (this.isCancelled) {
if (JobManager.VERBOSE)
org.eclipse.wst.jsdt.internal.core.util.Util.verbose("-> indexing of " + libraryFilePath.toString() + " has been cancelled"); //$NON-NLS-1$ //$NON-NLS-2$
return false;
}
-
+
if (JobManager.VERBOSE)
org.eclipse.wst.jsdt.internal.core.util.Util.verbose("-> indexing " + libraryFilePath.toString()); //$NON-NLS-1$
long initialTime = System.currentTimeMillis();
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/IndexAllProject.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/IndexAllProject.java
index e838b935..86fe0b47 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/IndexAllProject.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/indexing/IndexAllProject.java
@@ -148,7 +148,9 @@ public class IndexAllProject extends IndexRequest {
if (isCancelled) return false;
switch(proxy.getType()) {
case IResource.FILE :
- if (org.eclipse.wst.jsdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
+ if (org.eclipse.wst.jsdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())
+ ||org.eclipse.wst.jsdt.internal.core.util.Util.isMetadataFileName(proxy.getName())
+ ) {
IFile file = (IFile) proxy.requestResource();
if (exclusionPatterns != null || inclusionPatterns != null)
if (Util.isExcluded(file, inclusionPatterns, exclusionPatterns))
@@ -177,7 +179,9 @@ public class IndexAllProject extends IndexRequest {
if (isCancelled) return false;
switch(proxy.getType()) {
case IResource.FILE :
- if (org.eclipse.wst.jsdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())) {
+ if (org.eclipse.wst.jsdt.internal.core.util.Util.isJavaLikeFileName(proxy.getName())
+ ||org.eclipse.wst.jsdt.internal.core.util.Util.isMetadataFileName(proxy.getName()))
+ {
IFile file = (IFile) proxy.requestResource();
URI location = file.getLocationURI();
if (location == null) return false;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationLocator.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationLocator.java
index e9dc87c4..e80dc333 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationLocator.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationLocator.java
@@ -50,8 +50,8 @@ public int match(InferredType node, MatchingNodeSet nodeSet) {
if (pkg!=null)
{
if (pkg.length>0 &&
- matchesName(CharOperation.concat(pkg, this.pattern.simpleName, '.'), typeName))
- return nodeSet.addMatch(node, ((InternalSearchPattern)this.pattern).mustResolve ? POSSIBLE_MATCH : ACCURATE_MATCH);
+ matchesName(CharOperation.concat(pkg, this.pattern.simpleName, '.'), typeName))
+ return nodeSet.addMatch(node, ((InternalSearchPattern)this.pattern).mustResolve ? POSSIBLE_MATCH : ACCURATE_MATCH);
}
else // any package
{
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationPattern.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationPattern.java
index 5c89f7d9..b10fa010 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationPattern.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/search/matching/TypeDeclarationPattern.java
@@ -148,7 +148,6 @@ public TypeDeclarationPattern(
pkg=CharOperation.subarray(simpleName, 0, index);
simpleName=CharOperation.subarray(simpleName, index+1, simpleName.length);
}
-
this.pkg = isCaseSensitive() ? pkg : CharOperation.toLowerCase(pkg);
if (isCaseSensitive() || enclosingTypeNames == null) {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/Util.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/Util.java
index 1ccb15ef..9490e349 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/Util.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/core/util/Util.java
@@ -629,7 +629,8 @@ public class Util {
if (extensionStart + suffix.length != fileNameLength) continue;
if (fileName.charAt(stringLength) != '.') continue;
for (int j = extensionStart; j < fileNameLength; j++) {
- if (fileName.charAt(j) != suffix[j-extensionStart])
+ char ch = fileName.charAt(j);
+ if (ch != suffix[j-extensionStart] && Character.toLowerCase(ch) != suffix[j-extensionStart])
continue suffixes;
}
return true;
@@ -1187,7 +1188,8 @@ public class Util {
if (dotIndex < 0) continue;
if (fileName.charAt(dotIndex) != '.') continue;
for (int j = 0; j < extensionLength; j++) {
- if (fileName.charAt(extensionStart + j) != extension[j])
+ char ch = fileName.charAt(extensionStart + j);
+ if (ch != extension[j] && Character.toLowerCase(ch)!=extension[j] )
continue extensions;
}
return dotIndex;
@@ -2260,7 +2262,8 @@ public class Util {
if (extensionStart-1 < 0) continue;
if (fileName[extensionStart-1] != '.') continue;
for (int j = 0; j < extensionLength; j++) {
- if (fileName[extensionStart + j] != extension[j])
+ char ch = fileName[extensionStart + j];
+ if (ch != extension[j] && Character.toLowerCase(ch)!= extension[j])
continue extensions;
}
return true;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/ClassData.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/ClassData.java
index 5a22ec40..6677aa67 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/ClassData.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/ClassData.java
@@ -55,7 +55,7 @@ public class ClassData extends VersionableElement{
public Property [] fields;
public Property [] properties;
public Mix [] mixins;
-
+
public String name;
public String superclass;
public String visibility;
@@ -96,4 +96,19 @@ public class ClassData extends VersionableElement{
}
return null;
}
+
+ public Property getField(String elementName) {
+ if (this.fields!=null)
+ for (int i = 0; i < this.fields.length; i++) {
+ if (elementName.equals( this.fields[i].name))
+ return this.fields[i];
+ }
+ if (this.properties!=null)
+ for (int i = 0; i < this.properties.length; i++) {
+ if (elementName.equals( this.properties[i].name))
+ return this.properties[i];
+ }
+ return null;
+
+ }
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Event.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Event.java
index 657c3bd1..d2ddd9b3 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Event.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Event.java
@@ -28,5 +28,5 @@ public class Event extends VersionableElement {
empty
)
*/
-
+
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/IOAAMetaDataConstants.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/IOAAMetaDataConstants.java
index 401de883..a24cec11 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/IOAAMetaDataConstants.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/IOAAMetaDataConstants.java
@@ -12,9 +12,9 @@ package org.eclipse.wst.jsdt.internal.oaametadata;
public interface IOAAMetaDataConstants {
- public final static String METADATA_FILE="OpenAjaxAPI.xml";
+ public final static String METADATA_FILE="openajax.oam.xml";
- public final static String NAMESPACE_API="http://ns.openajax.org/api";
+ public final static String NAMESPACE_API="http://openajax.org/metadata";
public final static String TAG_ABOUTME="aboutMe";
public final static String TAG_ALIAS="alias";
@@ -25,7 +25,7 @@ public interface IOAAMetaDataConstants {
public final static String TAG_ANCESTOR = "ancestor";
public final static String ATTRIBUTE_ANCESTOR_DATATYPE = "datatype";
- public final static String TAG_API="api";
+ public final static String TAG_API="api";
public final static String ATTRIBUTE_API_VERSION ="version";
public final static String ATTRIBUTE_API_LANGUAGE ="language";
public final static String ATTRIBUTE_API_GETTERPATTERN="getterPattern";
@@ -149,6 +149,6 @@ public interface IOAAMetaDataConstants {
public final static String VARIABLE_SUBSTITUTION_STRING ="%%";
+
-
}
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataReader.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataReader.java
index 565e7abd..cbbef738 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataReader.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataReader.java
@@ -46,7 +46,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
boolean collectText=false;
boolean collectHTML=false;
boolean pendingEndElement=false;
-
+
boolean doTranslation=true;
String collectTextElement;
@@ -58,9 +58,10 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
HashMap collections;
String filePath;
-
+
HashMap messages=new HashMap();
+
static class StackElement {
HashMap collections;
Object currentObject;
@@ -129,7 +130,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
static final int STATE_USERAGENTS =52;
static final int STATE_INCLUDE =53;
-
+
static final ArrayList EMPTY_LIST=new ArrayList();
{
@@ -205,7 +206,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
parseMetadata(inputSource, handler);
return handler.apis;
}
-
+
private static void parseMetadata(InputSource inputSource,
MetadataReader handler) {
try {
@@ -256,6 +257,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
public void endElement(String uri, String localName, String name)
throws SAXException {
+
if (collectText)
{
if (NAMESPACE_API.equals(uri)&& localName.equals(collectTextElement))
@@ -315,7 +317,6 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
else
{
-
switch (this.currentState)
{
case STATE_API:
@@ -407,11 +408,11 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
if (collectText)
{
if (collectHTML) {
- text.append("<").append(localName);
- int nAttributes=attributes.getLength();
+ text.append("<").append(localName);
+ int nAttributes = attributes.getLength();
for (int i = 0; i < nAttributes; i++) {
- String qname=attributes.getQName(i);
- String value=attributes.getValue(i);
+ String qname = attributes.getQName(i);
+ String value = attributes.getValue(i);
text.append(" ").append(qname).append("=\"").append(value)
.append("\"");
}
@@ -500,7 +501,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
addCollectionElement(TAG_INTERFACE, clazz);
}
else
- addCollectionElement(TAG_CLASS, clazz);
+ addCollectionElement(TAG_CLASS, clazz);
clazz.name = attributes.getValue(ATTRIBUTE_CLASS_NAME);
clazz.superclass = attributes.getValue(ATTRIBUTE_CLASS_SUPERCLASS);
clazz.visibility = attributes.getValue(ATTRIBUTE_CLASS_VISIBILITY);
@@ -569,7 +570,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
this.collections=new HashMap();
break;
}
-
+
case STATE_EXCEPTION:
{
Exception exception=new Exception();
@@ -580,6 +581,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
break;
}
+
case STATE_FIELD:
case STATE_PROPERTY:
{
@@ -591,7 +593,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
addCollectionElement(TAG_FIELD, property);
}
else
- addCollectionElement(TAG_PROPERTY, property);
+ addCollectionElement(TAG_PROPERTY, property);
property.name = attributes.getValue(ATTRIBUTE_FIELD_NAME);
property.dataType = attributes.getValue(ATTRIBUTE_FIELD_DATATYPE);
property.scope = attributes.getValue(ATTRIBUTE_FIELD_SCOPE);
@@ -826,7 +828,7 @@ public class MetadataReader extends DefaultHandler implements IOAAMetaDataConsta
File file = new File(variants[i]);
if (!file.exists())
continue;
-
+
try {
InputSource inputSource = new InputSource(new FileReader(file));
} catch (FileNotFoundException e) {
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataSourceElementNotifier.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataSourceElementNotifier.java
index a21718f2..35dd629d 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataSourceElementNotifier.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/MetadataSourceElementNotifier.java
@@ -53,7 +53,8 @@ public class MetadataSourceElementNotifier {
typeInfo.nameSourceStart = 0;//type.getNameStart();
typeInfo.nameSourceEnd = 0;//typeInfo.nameSourceStart+typeInfo.name.length-1;
- typeInfo.superclass = clazz.superclass.toCharArray();
+ if (clazz.superclass!=null)
+ typeInfo.superclass = clazz.superclass.toCharArray();
typeInfo.superinterfaces = null;
typeInfo.secondary = false;
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Property.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Property.java
index d0e189b2..89373194 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Property.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/oaametadata/Property.java
@@ -39,7 +39,7 @@ public class Property extends VersionableElement{
// datatype_supplemental_attributes & pattern_attributes & pubsub_attributes
// )
-
+
public String name;
public String dataType;
public String visibility;
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/.classpath b/bundles/org.eclipse.wst.jsdt.manipulation/.classpath
deleted file mode 100644
index ce739334..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/.classpath
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/.project b/bundles/org.eclipse.wst.jsdt.manipulation/.project
deleted file mode 100644
index 17b16576..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/.project
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.wst.jsdt.core.manipulation</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.ManifestBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.SchemaBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.PluginNature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.core.resources.prefs b/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index afa5c913..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,3 +0,0 @@
-#Tue Apr 04 03:36:32 EDT 2006
-eclipse.preferences.version=1
-encoding/<project>=ISO-8859-1
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.core.runtime.prefs b/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.core.runtime.prefs
deleted file mode 100644
index 7ec57502..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.core.runtime.prefs
+++ /dev/null
@@ -1,3 +0,0 @@
-#Mon Apr 17 01:48:39 EDT 2006
-eclipse.preferences.version=1
-line.separator=\r\n
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index 91537393..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,80 +0,0 @@
-#Sat Mar 24 11:23:54 EDT 2007
-eclipse.preferences.version=1
-org.eclipse.jdt.core.builder.cleanOutputFolder=clean
-org.eclipse.jdt.core.builder.duplicateResourceTask=warning
-org.eclipse.jdt.core.builder.invalidClasspath=ignore
-org.eclipse.jdt.core.builder.resourceCopyExclusionFilter=*.launch
-org.eclipse.jdt.core.circularClasspath=error
-org.eclipse.jdt.core.classpath.exclusionPatterns=enabled
-org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=disabled
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.4
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.doc.comment.support=enabled
-org.eclipse.jdt.core.compiler.maxProblemPerUnit=100
-org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
-org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
-org.eclipse.jdt.core.compiler.problem.deprecation=ignore
-org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
-org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled
-org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
-org.eclipse.jdt.core.compiler.problem.emptyStatement=error
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
-org.eclipse.jdt.core.compiler.problem.fallthroughCase=warning
-org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
-org.eclipse.jdt.core.compiler.problem.finalParameterBound=ignore
-org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=error
-org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
-org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
-org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
-org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=ignore
-org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=error
-org.eclipse.jdt.core.compiler.problem.invalidJavadoc=ignore
-org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=enabled
-org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=enabled
-org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=private
-org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
-org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=error
-org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
-org.eclipse.jdt.core.compiler.problem.missingJavadocComments=ignore
-org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=enabled
-org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public
-org.eclipse.jdt.core.compiler.problem.missingJavadocTags=ignore
-org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=enabled
-org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=private
-org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
-org.eclipse.jdt.core.compiler.problem.missingSerialVersion=error
-org.eclipse.jdt.core.compiler.problem.noEffectAssignment=error
-org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
-org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
-org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
-org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=error
-org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=enabled
-org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=error
-org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
-org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
-org.eclipse.jdt.core.compiler.problem.typeParameterHiding=ignore
-org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
-org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
-org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
-org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
-org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=error
-org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
-org.eclipse.jdt.core.compiler.problem.unusedImport=error
-org.eclipse.jdt.core.compiler.problem.unusedLabel=error
-org.eclipse.jdt.core.compiler.problem.unusedLocal=error
-org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
-org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
-org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
-org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=error
-org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
-org.eclipse.jdt.core.compiler.source=1.3
-org.eclipse.jdt.core.incompatibleJDKLevel=ignore
-org.eclipse.jdt.core.incompleteClasspath=error
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.jdt.ui.prefs b/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.jdt.ui.prefs
deleted file mode 100644
index 301c7add..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.jdt.ui.prefs
+++ /dev/null
@@ -1,4 +0,0 @@
-#Mon Apr 17 01:48:39 EDT 2006
-eclipse.preferences.version=1
-internal.default.compliance=default
-org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8"?>\r\n<templates/>
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.ltk.core.refactoring.prefs b/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.ltk.core.refactoring.prefs
deleted file mode 100644
index c59368c5..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.ltk.core.refactoring.prefs
+++ /dev/null
@@ -1,3 +0,0 @@
-#Tue Apr 04 03:36:32 EDT 2006
-eclipse.preferences.version=1
-org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.pde.prefs b/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.pde.prefs
deleted file mode 100644
index fc522bba..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/.settings/org.eclipse.pde.prefs
+++ /dev/null
@@ -1,16 +0,0 @@
-#Mon Apr 17 02:01:33 EDT 2006
-compilers.incompatible-environment=0
-compilers.p.build=0
-compilers.p.deprecated=1
-compilers.p.illegal-att-value=0
-compilers.p.no-required-att=0
-compilers.p.not-externalized-att=0
-compilers.p.unknown-attribute=0
-compilers.p.unknown-class=0
-compilers.p.unknown-element=0
-compilers.p.unknown-resource=0
-compilers.p.unresolved-ex-points=0
-compilers.p.unresolved-import=0
-compilers.p.unused-element-or-attribute=0
-compilers.use-project=true
-eclipse.preferences.version=1
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/META-INF/MANIFEST.MF b/bundles/org.eclipse.wst.jsdt.manipulation/META-INF/MANIFEST.MF
deleted file mode 100644
index c02b1030..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,22 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Version: 1.0.100.qualifier
-Export-Package: org.eclipse.wst.jsdt.core.manipulation,
- org.eclipse.wst.jsdt.core.refactoring,
- org.eclipse.wst.jsdt.core.refactoring.descriptors,
- org.eclipse.wst.jsdt.internal.core.manipulation;x-internal:=true,
- org.eclipse.wst.jsdt.internal.core.refactoring.descriptors;x-internal:=true
-Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.ltk.core.refactoring;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.wst.jsdt.core;bundle-version="[1.0.0,2.0.0)",
- org.eclipse.core.expressions;bundle-version="[3.4.0,4.0.0)"
-Bundle-Activator: org.eclipse.wst.jsdt.internal.core.manipulation.JavaManipulationPlugin
-Eclipse-LazyStart: true
-Bundle-SymbolicName: org.eclipse.wst.jsdt.manipulation;singleton:=true
-Bundle-Name: %pluginName
-Bundle-RequiredExecutionEnvironment: J2SE-1.4
-Bundle-Localization: plugin
-Bundle-Vendor: %providerName
-Bundle-ActivationPolicy: lazy
-
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/about.html b/bundles/org.eclipse.wst.jsdt.manipulation/about.html
deleted file mode 100644
index 46023304..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/about.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
-<title>About</title>
-</head>
-<body lang="EN-US">
-<h2>About This Content</h2>
-
-<p>June 2, 2006</p>
-<h3>License</h3>
-
-<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;). Unless otherwise
-indicated below, the Content is provided to you under the terms and conditions of the
-Eclipse Public License Version 1.0 (&quot;EPL&quot;). A copy of the EPL is available
-at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
-For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
-
-<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
-being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
-apply to your use of any object code in the Content. Check the Redistributor's license that was
-provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
-indicated below, the terms and conditions of the EPL still apply to any source code in the Content
-and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
-
-</body>
-</html> \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/build.properties b/bundles/org.eclipse.wst.jsdt.manipulation/build.properties
deleted file mode 100644
index a294efc8..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/build.properties
+++ /dev/null
@@ -1,17 +0,0 @@
-###############################################################################
-# Copyright (c) 2005, 2007 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-###############################################################################
-source.. = src/
-output.. = bin/
-bin.includes = META-INF/,\
- .,\
- plugin.properties,\
- plugin.xml,\
- about.html
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/plugin.properties b/bundles/org.eclipse.wst.jsdt.manipulation/plugin.properties
deleted file mode 100644
index d3faa226..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/plugin.properties
+++ /dev/null
@@ -1,13 +0,0 @@
-###############################################################################
-# Copyright (c) 2000, 2007 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-###############################################################################
-
-pluginName= JavaScript Code Manipulation Functionality
-providerName= Eclipse.org
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/plugin.xml b/bundles/org.eclipse.wst.jsdt.manipulation/plugin.xml
deleted file mode 100644
index 3f99aead..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/plugin.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<!-- ====================================================================== -->
-<!-- Copyright (c) 2000, 2006 IBM Corporation and others. -->
-<!-- All rights reserved. This program and the accompanying materials -->
-<!-- are made available under the terms of the Eclipse Public License v1.0 -->
-<!-- which accompanies this distribution, and is available at -->
-<!-- http://www.eclipse.org/legal/epl-v10.html -->
-<!-- -->
-<!-- Contributors: -->
-<!-- IBM Corporation - initial API and implementation -->
-<!-- ====================================================================== -->
-<plugin>
-
- <extension point="org.eclipse.core.expressions.propertyTesters">
- <propertyTester
- id="org.eclipse.wst.jsdt.core.javaElementPropertyTester"
- class="org.eclipse.wst.jsdt.internal.core.manipulation.JavaElementPropertyTester"
- namespace="org.eclipse.wst.jsdt.core"
- properties="name,isInJavaProject,isOnClasspath,hasTypeOnClasspath,inSourceFolder,inArchive,inExternalArchive,projectOption"
- type="org.eclipse.wst.jsdt.core.IJavaScriptElement"/>
- </extension>
-
-</plugin>
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.java
deleted file mode 100644
index bbbbcc58..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.manipulation;
-
-/**
- * Central access point for the Java Manipulation plug-in (id <code>"org.eclipse.wst.jsdt.manipulation"</code>).
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public class JavaScriptManipulation {
-
- /**
- * The id of the Java Manipulation plug-in (value <code>"org.eclipse.wst.jsdt.manipulation"</code>).
- */
- public static final String ID_PLUGIN= "org.eclipse.wst.jsdt.manipulation"; //$NON-NLS-1$
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptElementMapper.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptElementMapper.java
deleted file mode 100644
index 6e97a9b2..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptElementMapper.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring;
-
-import org.eclipse.wst.jsdt.core.IJavaScriptElement;
-
-/**
- * An <code>IJavaScriptElementMapper</code> provides methods to map an original
- * elements to its refactored counterparts.
- * <p>
- * An <code>IJavaScriptElementMapper</code> can be obtained via
- * {@link org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#getAdapter(Class)}.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public interface IJavaScriptElementMapper {
-
- /**
- * Returns the refactored Java element for the given element.
- * The returned Java element might not yet exist when the method
- * is called.
- * </p>
- * Note that local variables <strong>cannot</strong> be mapped
- * using this method.
- * <p>
- *
- * @param element the element to be refactored
- *
- * @return the refactored element for the given element
- */
- IJavaScriptElement getRefactoredJavaScriptElement(IJavaScriptElement element);
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.java
deleted file mode 100644
index 55d282b3..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.java
+++ /dev/null
@@ -1,412 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring;
-
-
-/**
- * Interface for refactoring ids offered by the JDT tooling.
- * <p>
- * This interface provides refactoring ids for refactorings offered by the JDT
- * tooling. Refactoring instances corresponding to such an id may be
- * instantiated by the refactoring framework using
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)}. The resulting
- * refactoring instance may be executed on the workspace with a
- * {@link org.eclipse.ltk.core.refactoring.PerformRefactoringOperation}.
- * <p>
- * Clients may obtain customizable refactoring descriptors for a certain
- * refactoring by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id and then calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} to obtain a customizable
- * refactoring descriptor. The concrete subtype of refactoring descriptors is
- * dependent from the <code>id</code> argument.
- * </p>
- * <p>
- * Note: this interface is not intended to be implemented by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public interface IJavaScriptRefactorings {
-
- /**
- * Refactoring id of the 'Change Method Signature' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.change.method.signature</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ChangeMethodSignatureDescriptor}.
- * </p>
- */
- public static final String CHANGE_METHOD_SIGNATURE= "org.eclipse.wst.jsdt.ui.change.method.signature"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Convert Anonymous To Nested' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.convert.anonymous</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ConvertAnonymousDescriptor}.
- * </p>
- */
- public static final String CONVERT_ANONYMOUS= "org.eclipse.wst.jsdt.ui.convert.anonymous"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Convert Local Variable to Field' refactoring
- * (value: <code>org.eclipse.wst.jsdt.ui.promote.temp</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ConvertLocalVariableDescriptor}.
- * </p>
- */
- public static final String CONVERT_LOCAL_VARIABLE= "org.eclipse.wst.jsdt.ui.promote.temp"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Convert Member Type to Top Level' refactoring
- * (value: <code>org.eclipse.wst.jsdt.ui.move.inner</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ConvertMemberTypeDescriptor}.
- * </p>
- */
- public static final String CONVERT_MEMBER_TYPE= "org.eclipse.wst.jsdt.ui.move.inner"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Copy' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.copy</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.CopyDescriptor}.
- * </p>
- */
- public static final String COPY= "org.eclipse.wst.jsdt.ui.copy"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Delete' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.delete</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.DeleteDescriptor}.
- * </p>
- */
- public static final String DELETE= "org.eclipse.wst.jsdt.ui.delete"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Encapsulate Field' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.self.encapsulate</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.EncapsulateFieldDescriptor}.
- * </p>
- */
- public static final String ENCAPSULATE_FIELD= "org.eclipse.wst.jsdt.ui.self.encapsulate"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Extract Constant' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.extract.constant</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ExtractConstantDescriptor}.
- * </p>
- */
- public static final String EXTRACT_CONSTANT= "org.eclipse.wst.jsdt.ui.extract.constant"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Extract Interface' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.extract.interface</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ExtractInterfaceDescriptor}.
- * </p>
- */
- public static final String EXTRACT_INTERFACE= "org.eclipse.wst.jsdt.ui.extract.interface"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Extract Local Variable' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.extract.temp</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ExtractLocalDescriptor}.
- * </p>
- */
- public static final String EXTRACT_LOCAL_VARIABLE= "org.eclipse.wst.jsdt.ui.extract.temp"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Extract Method' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.extract.method</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ExtractMethodDescriptor}.
- * </p>
- */
- public static final String EXTRACT_METHOD= "org.eclipse.wst.jsdt.ui.extract.method"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Extract Superclass' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.extract.superclass</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.ExtractSuperclassDescriptor}.
- * </p>
- */
- public static final String EXTRACT_SUPERCLASS= "org.eclipse.wst.jsdt.ui.extract.superclass"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Generalize Declared Type' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.change.type</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.GeneralizeTypeDescriptor}.
- * </p>
- */
- public static final String GENERALIZE_TYPE= "org.eclipse.wst.jsdt.ui.change.type"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Infer Type Arguments' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.infer.typearguments</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.InferTypeArgumentsDescriptor}.
- * </p>
- */
- public static final String INFER_TYPE_ARGUMENTS= "org.eclipse.wst.jsdt.ui.infer.typearguments"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Inline Constant' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.inline.constant</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.InlineConstantDescriptor}.
- * </p>
- */
- public static final String INLINE_CONSTANT= "org.eclipse.wst.jsdt.ui.inline.constant"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Inline Local Variable' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.inline.temp</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.InlineLocalVariableDescriptor}.
- * </p>
- */
- public static final String INLINE_LOCAL_VARIABLE= "org.eclipse.wst.jsdt.ui.inline.temp"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Inline Method' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.inline.method</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.InlineMethodDescriptor}.
- * </p>
- */
- public static final String INLINE_METHOD= "org.eclipse.wst.jsdt.ui.inline.method"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Introduce Factory' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.introduce.factory</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link Iorg.eclipse.wst.jsdt.core.refactoring.descriptors.ntroduceFactoryDescriptor}.
- * </p>
- */
- public static final String INTRODUCE_FACTORY= "org.eclipse.wst.jsdt.ui.introduce.factory"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Introduce Indirection' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.introduce.indirection</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.IntroduceIndirectionDescriptor}.
- * </p>
- */
- public static final String INTRODUCE_INDIRECTION= "org.eclipse.wst.jsdt.ui.introduce.indirection"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Introduce Parameter' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.introduce.parameter</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.IntroduceParameterDescriptor}.
- * </p>
- */
- public static final String INTRODUCE_PARAMETER= "org.eclipse.wst.jsdt.ui.introduce.parameter"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Move' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.move</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.MoveDescriptor}.
- * </p>
- */
- public static final String MOVE= "org.eclipse.wst.jsdt.ui.move"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Move Method' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.move.method</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.MoveMethodDescriptor}.
- * </p>
- */
- public static final String MOVE_METHOD= "org.eclipse.wst.jsdt.ui.move.method"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Move Static Members' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.move.static</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.MoveStaticMembersDescriptor}.
- * </p>
- */
- public static final String MOVE_STATIC_MEMBERS= "org.eclipse.wst.jsdt.ui.move.static"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Pull Up' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.pull.up</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.PullUpDescriptor}.
- * </p>
- */
- public static final String PULL_UP= "org.eclipse.wst.jsdt.ui.pull.up"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Push Down' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.push.down</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.PushDownDescriptor}.
- * </p>
- */
- public static final String PUSH_DOWN= "org.eclipse.wst.jsdt.ui.push.down"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Compilation Unit' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.compilationunit</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_JAVASCRIPT_UNIT= "org.eclipse.wst.jsdt.ui.rename.compilationunit"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Enum Constant' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.enum.constant</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_ENUM_CONSTANT= "org.eclipse.wst.jsdt.ui.rename.enum.constant"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Field' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.field</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_FIELD= "org.eclipse.wst.jsdt.ui.rename.field"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Java Project' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.java.project</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_JAVA_PROJECT= "org.eclipse.wst.jsdt.ui.rename.java.project"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Local Variable' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.local.variable</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_LOCAL_VARIABLE= "org.eclipse.wst.jsdt.ui.rename.local.variable"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Method' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.method</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_METHOD= "org.eclipse.wst.jsdt.ui.rename.method"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Package' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.package</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_PACKAGE= "org.eclipse.wst.jsdt.ui.rename.package"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Resource' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.resource</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameResourceDescriptor}.
- * </p>
- */
- public static final String RENAME_RESOURCE= "org.eclipse.wst.jsdt.ui.rename.resource"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Source Folder' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.source.folder</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_SOURCE_FOLDER= "org.eclipse.wst.jsdt.ui.rename.source.folder"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Type' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.type</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_TYPE= "org.eclipse.wst.jsdt.ui.rename.type"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Rename Type Parameter' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.rename.type.parameter</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor}.
- * </p>
- */
- public static final String RENAME_TYPE_PARAMETER= "org.eclipse.wst.jsdt.ui.rename.type.parameter"; //$NON-NLS-1$
-
- /**
- * Refactoring id of the 'Use Supertype Where Possible' refactoring (value:
- * <code>org.eclipse.wst.jsdt.ui.use.supertype</code>).
- * <p>
- * Clients may safely cast the obtained refactoring descriptor to
- * {@link org.eclipse.wst.jsdt.core.refactoring.descriptors.UseSupertypeDescriptor}.
- * </p>
- */
- public static final String USE_SUPER_TYPE= "org.eclipse.wst.jsdt.ui.use.supertype"; //$NON-NLS-1$
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/RenameTypeArguments.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/RenameTypeArguments.java
deleted file mode 100644
index f2a624ee..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/RenameTypeArguments.java
+++ /dev/null
@@ -1,86 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring;
-
-import org.eclipse.core.runtime.Assert;
-
-import org.eclipse.ltk.core.refactoring.participants.RenameArguments;
-
-import org.eclipse.wst.jsdt.core.IJavaScriptElement;
-
-/**
- * Rename type arguments describe the data that a rename type processor
- * provides to its rename type participants.
- * <p>
- * This class is not intended to be subclassed by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public class RenameTypeArguments extends RenameArguments {
-
- private boolean updateSimilarDeclarations;
- private IJavaScriptElement[] similarDeclarations;
-
- /**
- * Creates new rename type arguments.
- *
- * @param newName the new name of the element to be renamed
- * @param updateReferences <code>true</code> if reference
- * updating is requested; <code>false</code> otherwise
- * @param updateSimilarDeclarations <code>true</code> if similar
- * declaration updating is requested; <code>false</code> otherwise
- * @param similarDeclarations the similar declarations that will be
- * updated or <code>null</code> if similar declaration updating is
- * not requested
- */
- public RenameTypeArguments(String newName, boolean updateReferences, boolean updateSimilarDeclarations,
- IJavaScriptElement[] similarDeclarations) {
- super(newName, updateReferences);
- if (updateSimilarDeclarations) {
- Assert.isNotNull(similarDeclarations);
- }
- this.updateSimilarDeclarations= updateSimilarDeclarations;
- this.similarDeclarations= similarDeclarations;
- }
-
- /**
- * Returns whether similar declaration updating is requested or not.
- *
- * @return returns <code>true</code> if similar declaration
- * updating is requested; <code>false</code> otherwise
- */
- public boolean getUpdateSimilarDeclarations() {
- return updateSimilarDeclarations;
- }
-
- /**
- * Returns the similar declarations that get updated. Returns
- * <code>null</code> if similar declaration updating is not
- * requested.
- *
- * @return the similar elements that get updated
- */
- public IJavaScriptElement[] getSimilarDeclarations() {
- return similarDeclarations;
- }
-
- /* (non-Javadoc)
- * @see RefactoringArguments#toString()
- */
- public String toString() {
- return super.toString()
- + (updateSimilarDeclarations ? " (update derived elements)" : " (don't update derived elements)"); //$NON-NLS-1$//$NON-NLS-2$
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.java
deleted file mode 100644
index 2e66409d..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the change method signature refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ChangeMethodSignatureDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ChangeMethodSignatureDescriptor() {
- super(IJavaScriptRefactorings.CHANGE_METHOD_SIGNATURE);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.java
deleted file mode 100644
index 91e09f61..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the convert anonymous to nested refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ConvertAnonymousDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ConvertAnonymousDescriptor() {
- super(IJavaScriptRefactorings.CONVERT_ANONYMOUS);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.java
deleted file mode 100644
index 4cf48a21..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the convert local variable refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ConvertLocalVariableDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ConvertLocalVariableDescriptor() {
- super(IJavaScriptRefactorings.CONVERT_LOCAL_VARIABLE);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.java
deleted file mode 100644
index e6befcb4..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the convert member type refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ConvertMemberTypeDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ConvertMemberTypeDescriptor() {
- super(IJavaScriptRefactorings.CONVERT_MEMBER_TYPE);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.java
deleted file mode 100644
index 2dcff584..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the copy refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class CopyDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public CopyDescriptor() {
- super(IJavaScriptRefactorings.COPY);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/DeleteDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/DeleteDescriptor.java
deleted file mode 100644
index b7cac550..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/DeleteDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the delete refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class DeleteDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public DeleteDescriptor() {
- super(IJavaScriptRefactorings.DELETE);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/EncapsulateFieldDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/EncapsulateFieldDescriptor.java
deleted file mode 100644
index b752bad9..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/EncapsulateFieldDescriptor.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the encapsulate field refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class EncapsulateFieldDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public EncapsulateFieldDescriptor() {
- super(IJavaScriptRefactorings.ENCAPSULATE_FIELD);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractConstantDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractConstantDescriptor.java
deleted file mode 100644
index 4b6c3699..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractConstantDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the extract constant refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ExtractConstantDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ExtractConstantDescriptor() {
- super(IJavaScriptRefactorings.EXTRACT_CONSTANT);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractInterfaceDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractInterfaceDescriptor.java
deleted file mode 100644
index b43e7402..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractInterfaceDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the extract interface refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ExtractInterfaceDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ExtractInterfaceDescriptor() {
- super(IJavaScriptRefactorings.EXTRACT_INTERFACE);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractLocalDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractLocalDescriptor.java
deleted file mode 100644
index 385d76c1..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractLocalDescriptor.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the extract local variable refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ExtractLocalDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ExtractLocalDescriptor() {
- super(IJavaScriptRefactorings.EXTRACT_LOCAL_VARIABLE);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractMethodDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractMethodDescriptor.java
deleted file mode 100644
index c33f7a73..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractMethodDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the extract method refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ExtractMethodDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ExtractMethodDescriptor() {
- super(IJavaScriptRefactorings.EXTRACT_METHOD);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractSuperclassDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractSuperclassDescriptor.java
deleted file mode 100644
index 6ff7246b..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractSuperclassDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the extract superclass refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class ExtractSuperclassDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public ExtractSuperclassDescriptor() {
- super(IJavaScriptRefactorings.EXTRACT_SUPERCLASS);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/GeneralizeTypeDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/GeneralizeTypeDescriptor.java
deleted file mode 100644
index eaabc62e..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/GeneralizeTypeDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the generalize declared type refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class GeneralizeTypeDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public GeneralizeTypeDescriptor() {
- super(IJavaScriptRefactorings.GENERALIZE_TYPE);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InferTypeArgumentsDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InferTypeArgumentsDescriptor.java
deleted file mode 100644
index 367cf0d0..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InferTypeArgumentsDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the infer type arguments refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class InferTypeArgumentsDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public InferTypeArgumentsDescriptor() {
- super(IJavaScriptRefactorings.INFER_TYPE_ARGUMENTS);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineConstantDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineConstantDescriptor.java
deleted file mode 100644
index b24ce20e..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineConstantDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the inline constant refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class InlineConstantDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public InlineConstantDescriptor() {
- super(IJavaScriptRefactorings.INLINE_CONSTANT);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineLocalVariableDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineLocalVariableDescriptor.java
deleted file mode 100644
index f6e4eb79..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineLocalVariableDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the inline local variable refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class InlineLocalVariableDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public InlineLocalVariableDescriptor() {
- super(IJavaScriptRefactorings.INLINE_LOCAL_VARIABLE);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineMethodDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineMethodDescriptor.java
deleted file mode 100644
index 34ce398d..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineMethodDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the inline method refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class InlineMethodDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public InlineMethodDescriptor() {
- super(IJavaScriptRefactorings.INLINE_METHOD);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceFactoryDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceFactoryDescriptor.java
deleted file mode 100644
index 86d91bdb..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceFactoryDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the introduce factory refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class IntroduceFactoryDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public IntroduceFactoryDescriptor() {
- super(IJavaScriptRefactorings.INTRODUCE_FACTORY);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceIndirectionDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceIndirectionDescriptor.java
deleted file mode 100644
index a67f4023..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceIndirectionDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the introduce indirection refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class IntroduceIndirectionDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public IntroduceIndirectionDescriptor() {
- super(IJavaScriptRefactorings.INTRODUCE_INDIRECTION);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceParameterDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceParameterDescriptor.java
deleted file mode 100644
index 71153642..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceParameterDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the introduce parameter refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class IntroduceParameterDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public IntroduceParameterDescriptor() {
- super(IJavaScriptRefactorings.INTRODUCE_PARAMETER);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.java
deleted file mode 100644
index 942e72b6..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import java.util.Map;
-
-import org.eclipse.core.runtime.Assert;
-
-import org.eclipse.ltk.core.refactoring.RefactoringContribution;
-import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
-
-/**
- * Partial implementation of a Java refactoring contribution.
- * <p>
- * Note: this class is not intended to be extended outside the refactoring
- * framework.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public abstract class JavaScriptRefactoringContribution extends RefactoringContribution {
-
- /**
- * {@inheritDoc}
- */
- public final Map retrieveArgumentMap(final RefactoringDescriptor descriptor) {
- Assert.isNotNull(descriptor);
- if (descriptor instanceof JavaScriptRefactoringDescriptor)
- return ((JavaScriptRefactoringDescriptor) descriptor).getArguments();
- return super.retrieveArgumentMap(descriptor);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.java
deleted file mode 100644
index b5607650..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.java
+++ /dev/null
@@ -1,464 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import java.text.MessageFormat;
-import java.util.HashMap;
-import java.util.Map;
-
-import org.eclipse.core.runtime.Assert;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.core.runtime.Status;
-
-import org.eclipse.core.resources.IResource;
-import org.eclipse.core.resources.IWorkspaceRoot;
-import org.eclipse.core.resources.ResourcesPlugin;
-
-import org.eclipse.ltk.core.refactoring.Refactoring;
-import org.eclipse.ltk.core.refactoring.RefactoringContribution;
-import org.eclipse.ltk.core.refactoring.RefactoringCore;
-import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
-import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-
-import org.eclipse.wst.jsdt.core.IJavaScriptElement;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.core.IFunction;
-import org.eclipse.wst.jsdt.core.JavaScriptCore;
-import org.eclipse.wst.jsdt.core.WorkingCopyOwner;
-
-import org.eclipse.wst.jsdt.internal.core.manipulation.JavaManipulationPlugin;
-import org.eclipse.wst.jsdt.internal.core.refactoring.descriptors.DescriptorMessages;
-
-/**
- * Partial implementation of a java refactoring descriptor.
- * <p>
- * This class provides features common to all Java refactorings.
- * </p>
- * <p>
- * Note: this class is not intended to be extended outside the refactoring
- * framework.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public abstract class JavaScriptRefactoringDescriptor extends RefactoringDescriptor {
-
- /**
- * Predefined argument called <code>element&lt;Number&gt;</code>.
- * <p>
- * This argument should be used to describe the elements being refactored.
- * The value of this argument does not necessarily have to uniquely identify
- * the elements. However, it must be possible to uniquely identify the
- * elements using the value of this argument in conjunction with the values
- * of the other user-defined attributes.
- * </p>
- * <p>
- * The element arguments are simply distinguished by appending a number to
- * the argument name, e.g. element1. The indices of this argument are one-based.
- * </p>
- */
- protected static final String ATTRIBUTE_ELEMENT= "element"; //$NON-NLS-1$
-
- /**
- * Predefined argument called <code>input</code>.
- * <p>
- * This argument should be used to describe the element being refactored.
- * The value of this argument does not necessarily have to uniquely identify
- * the input element. However, it must be possible to uniquely identify the
- * input element using the value of this argument in conjunction with the
- * values of the other user-defined attributes.
- * </p>
- */
- protected static final String ATTRIBUTE_INPUT= "input"; //$NON-NLS-1$
-
- /**
- * Predefined argument called <code>name</code>.
- * <p>
- * This argument should be used to name the element being refactored. The
- * value of this argument may be shown in the user interface.
- * </p>
- */
- protected static final String ATTRIBUTE_NAME= "name"; //$NON-NLS-1$
-
- /**
- * Predefined argument called <code>references</code>.
- * <p>
- * This argument should be used to describe whether references to the
- * elements being refactored should be updated as well. The value of this
- * argument is either <code>"true"</code> or <code>"false"</code>.
- * </p>
- */
- protected static final String ATTRIBUTE_REFERENCES= "references"; //$NON-NLS-1$
-
- /**
- * Predefined argument called <code>selection</code>.
- * <p>
- * This argument should be used to describe user input selections within a
- * text file. The value of this argument has the format "offset length".
- * </p>
- */
- protected static final String ATTRIBUTE_SELECTION= "selection"; //$NON-NLS-1$
-
- /** The version attribute */
- protected static final String ATTRIBUTE_VERSION= "version"; //$NON-NLS-1$
-
- /**
- * Constant describing the jar migration flag (value: <code>65536</code>).
- * <p>
- * Clients should set this flag to indicate that the refactoring can be
- * stored to a JAR file in order to be accessible to the Migrate JAR File
- * refactoring, regardless whether there is a source attachment to the JAR
- * file or not. If this flag is set, <code>JAR_REFACTORING</code> should
- * be set as well.
- * </p>
- *
- * @see #JAR_REFACTORING
- */
- public static final int JAR_MIGRATION= 1 << 16;
-
- /**
- * Constant describing the jar refactoring flag (value: <code>524288</code>).
- * <p>
- * Clients should set this flag to indicate that the refactoring in
- * principle can be performed on binary elements originating from a JAR
- * file. Refactorings which are able to run on binary elements, but require
- * a correctly configured source attachment to work must set the
- * <code>JAR_SOURCE_ATTACHMENT</code> flag as well.
- * </p>
- *
- * @see #JAR_SOURCE_ATTACHMENT
- */
- public static final int JAR_REFACTORING= 1 << 19;
-
- /**
- * Constant describing the jar source attachment flag (value:
- * <code>262144</code>).
- * <p>
- * Clients should set this flag to indicate that the refactoring can be
- * performed on binary elements originating from a JAR file if and only if
- * it has a correctly configured source attachment.
- * </p>
- *
- * @see #JAR_REFACTORING
- */
- public static final int JAR_SOURCE_ATTACHMENT= 1 << 18;
-
- /** The version value <code>1.0</code> */
- protected static final String VALUE_VERSION_1_0= "1.0"; //$NON-NLS-1$
-
- /**
- * Converts the specified element to an input handle.
- *
- * @param project
- * the project, or <code>null</code> for the workspace
- * @param element
- * the element
- * @return a corresponding input handle
- */
- protected static String elementToHandle(final String project, final IJavaScriptElement element) {
- final String handle= element.getHandleIdentifier();
- if (project != null && !(element instanceof IJavaScriptProject)) {
- final String id= element.getJavaScriptProject().getHandleIdentifier();
- return handle.substring(id.length());
- }
- return handle;
- }
-
- /**
- * Converts an input handle back to the corresponding java element.
- *
- * @param project
- * the project, or <code>null</code> for the workspace
- * @param handle
- * the input handle
- * @return the corresponding java element, or <code>null</code> if no such
- * element exists
- */
- protected static IJavaScriptElement handleToElement(final String project, final String handle) {
- return handleToElement(project, handle, true);
- }
-
- /**
- * Converts an input handle back to the corresponding java element.
- *
- * @param project
- * the project, or <code>null</code> for the workspace
- * @param handle
- * the input handle
- * @param check
- * <code>true</code> to check for existence of the element,
- * <code>false</code> otherwise
- * @return the corresponding java element, or <code>null</code> if no such
- * element exists
- */
- protected static IJavaScriptElement handleToElement(final String project, final String handle, final boolean check) {
- return handleToElement(null, project, handle, check);
- }
-
- /**
- * Converts an input handle back to the corresponding java element.
- *
- * @param owner
- * the working copy owner
- * @param project
- * the project, or <code>null</code> for the workspace
- * @param handle
- * the input handle
- * @param check
- * <code>true</code> to check for existence of the element,
- * <code>false</code> otherwise
- * @return the corresponding java element, or <code>null</code> if no such
- * element exists
- */
- protected static IJavaScriptElement handleToElement(final WorkingCopyOwner owner, final String project, final String handle, final boolean check) {
- IJavaScriptElement element= null;
- if (owner != null)
- element= JavaScriptCore.create(handle, owner);
- else
- element= JavaScriptCore.create(handle);
- if (element == null && project != null) {
- final IJavaScriptProject javaProject= JavaScriptCore.create(ResourcesPlugin.getWorkspace().getRoot()).getJavaScriptProject(project);
- final String identifier= javaProject.getHandleIdentifier();
- if (owner != null)
- element= JavaScriptCore.create(identifier + handle, owner);
- else
- element= JavaScriptCore.create(identifier + handle);
- }
- if (check && element instanceof IFunction) {
- final IFunction method= (IFunction) element;
- final IFunction[] methods= (method.getDeclaringType()!=null) ? method.getDeclaringType().findMethods(method)
- : new IFunction[]{ method.getJavaScriptUnit().getFunction(method.getElementName(), method.getParameterTypes())};
- if (methods != null && methods.length > 0)
- element= methods[0];
- }
- if (element != null && (!check || element.exists()))
- return element;
- return null;
- }
-
- /**
- * Converts an input handle with the given prefix back to the corresponding
- * resource.
- *
- * @param project
- * the project, or <code>null</code> for the workspace
- * @param handle
- * the input handle
- *
- * @return the corresponding resource, or <code>null</code> if no such
- * resource exists
- */
- protected static IResource handleToResource(final String project, final String handle) {
- final IWorkspaceRoot root= ResourcesPlugin.getWorkspace().getRoot();
- if ("".equals(handle)) //$NON-NLS-1$
- return null;
- final IPath path= Path.fromPortableString(handle);
- if (path == null)
- return null;
- if (project != null && !"".equals(project)) //$NON-NLS-1$
- return root.getProject(project).findMember(path);
- return root.findMember(path);
- }
-
- /**
- * Converts the specified resource to an input handle.
- *
- * @param project
- * the project, or <code>null</code> for the workspace
- * @param resource
- * the resource
- *
- * @return the input handle
- */
- protected static String resourceToHandle(final String project, final IResource resource) {
- if (project != null && !"".equals(project)) //$NON-NLS-1$
- return resource.getProjectRelativePath().toPortableString();
- return resource.getFullPath().toPortableString();
- }
-
- /** The argument map */
- protected final Map fArguments;
-
- /**
- * Creates a new java refactoring descriptor.
- *
- * @param id
- * the unique id of the refactoring
- */
- protected JavaScriptRefactoringDescriptor(final String id) {
- this(id, new HashMap());
- }
-
- /**
- * Creates a new java refactoring descriptor.
- *
- * @param id
- * the unique id of the refactoring
- * @param arguments
- * the argument map to use
- */
- protected JavaScriptRefactoringDescriptor(final String id, final Map arguments) {
- super(id, null, DescriptorMessages.JavaRefactoringDescriptor_not_available, null, RefactoringDescriptor.STRUCTURAL_CHANGE | RefactoringDescriptor.MULTI_CHANGE);
- fArguments= arguments;
- fArguments.put(ATTRIBUTE_VERSION, VALUE_VERSION_1_0);
- }
-
- /**
- * {@inheritDoc}
- */
- public Refactoring createRefactoring(final RefactoringStatus status) throws CoreException {
- populateArgumentMap();
- Refactoring refactoring= null;
- final String id= getID();
- final RefactoringContribution contribution= RefactoringCore.getRefactoringContribution(id);
- if (contribution != null) {
- final RefactoringDescriptor descriptor= contribution.createDescriptor(id, getProject(), getDescription(), getComment(), fArguments, getFlags());
- if (descriptor != null) {
- refactoring= descriptor.createRefactoring(status);
- } else
- JavaManipulationPlugin.log(new Status(IStatus.ERROR, JavaManipulationPlugin.getPluginId(), 0, MessageFormat.format(DescriptorMessages.JavaRefactoringDescriptor_no_resulting_descriptor, new Object[] { id}), null));
- }
- return refactoring;
- }
-
- /**
- * Returns the argument map of this refactoring descriptor.
- * <p>
- * The returned map is a copy of the argument map. Modifying the result does
- * not change the refactoring descriptor itself.
- * </p>
- * <p>
- * Note: This API must not be extended or reimplemented and should not be
- * called from outside the refactoring framework.
- * </p>
- *
- * @return the argument map
- */
- protected Map getArguments() {
- populateArgumentMap();
- return new HashMap(fArguments);
- }
-
- /**
- * Populates the refactoring descriptor argument map based on the specified
- * arguments.
- */
- protected void populateArgumentMap() {
- Assert.isTrue(!validateDescriptor().hasFatalError(), "Validation returns a fatal error status."); //$NON-NLS-1$
- }
-
- /**
- * Sets the details comment of this refactoring.
- * <p>
- * This information is used in the user interface to show additional details
- * about the performed refactoring. The default is to use no details
- * comment.
- * </p>
- *
- * @param comment
- * the details comment to set, or <code>null</code> to set no
- * details comment
- *
- * @see #getComment()
- */
- public void setComment(final String comment) {
- super.setComment(comment);
- }
-
- /**
- * Sets the description of this refactoring.
- * <p>
- * This information is used to label a refactoring in the user interface.
- * The default is an unspecified, but legal description.
- * </p>
- *
- * @param description
- * the non-empty description of the refactoring to set
- *
- * @see #getDescription()
- */
- public void setDescription(final String description) {
- super.setDescription(description);
- }
-
- /**
- * Sets the flags of this refactoring.
- * <p>
- * The default is
- * <code>RefactoringDescriptor.STRUCTURAL_CHANGE | RefactoringDescriptor.MULTI_CHANGE</code>,
- * unless overridden by a concrete subclass. Clients may use refactoring
- * flags to indicate special capabilities of Java refactorings.
- * </p>
- *
- * @param flags
- * the flags to set, or <code>RefactoringDescriptor.NONE</code>
- * to clear the flags
- *
- * @see #getFlags()
- *
- * @see RefactoringDescriptor#NONE
- * @see RefactoringDescriptor#STRUCTURAL_CHANGE
- * @see RefactoringDescriptor#BREAKING_CHANGE
- * @see RefactoringDescriptor#MULTI_CHANGE
- *
- * @see #JAR_MIGRATION
- * @see #JAR_REFACTORING
- * @see #JAR_SOURCE_ATTACHMENT
- */
- public void setFlags(final int flags) {
- super.setFlags(flags);
- }
-
- /**
- * Sets the project name of this refactoring.
- * <p>
- * The default is to associate the refactoring with the workspace.
- * Subclasses should call this method with the project name associated with
- * the refactoring's input elements, if available.
- * </p>
- *
- * @param project
- * the non-empty project name to set, or <code>null</code> for
- * the workspace
- *
- * @see #getProject()
- */
- public void setProject(final String project) {
- super.setProject(project);
- }
-
- /**
- * Validates the refactoring descriptor with respect to the constraints
- * imposed by the represented refactoring.
- * <p>
- * Clients must call this method to verify that all arguments have been
- * correctly set and that they satisfy the constraints imposed by specific
- * refactorings. Returning a refactoring status of severity
- * {@link RefactoringStatus#FATAL} indicates that the refactoring descriptor
- * cannot be used to create a refactoring instance.
- * </p>
- *
- * @return a refactoring status describing the outcome of the validation
- */
- public RefactoringStatus validateDescriptor() {
- RefactoringStatus status= new RefactoringStatus();
- String description= getDescription();
- if (description == null || "".equals(description)) //$NON-NLS-1$
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.JavaRefactoringDescriptor_no_description));
- return status;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.java
deleted file mode 100644
index af4c528c..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.java
+++ /dev/null
@@ -1,348 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.core.resources.IFile;
-import org.eclipse.core.resources.IFolder;
-import org.eclipse.core.resources.IResource;
-import org.eclipse.core.runtime.Assert;
-import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-import org.eclipse.wst.jsdt.core.IJavaScriptUnit;
-import org.eclipse.wst.jsdt.core.IJavaScriptElement;
-import org.eclipse.wst.jsdt.core.IMember;
-import org.eclipse.wst.jsdt.core.IPackageFragment;
-import org.eclipse.wst.jsdt.core.IPackageFragmentRoot;
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-import org.eclipse.wst.jsdt.internal.core.refactoring.descriptors.DescriptorMessages;
-
-/**
- * Refactoring descriptor for the move refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class MoveDescriptor extends JavaScriptRefactoringDescriptor {
-
- /** The destination attribute */
- private static final String ATTRIBUTE_DESTINATION= "destination"; //$NON-NLS-1$
-
- /** The files attribute */
- private static final String ATTRIBUTE_FILES= "files"; //$NON-NLS-1$
-
- /** The folders attribute */
- private static final String ATTRIBUTE_FOLDERS= "folders"; //$NON-NLS-1$
-
- /** The fragments attribute */
- private static final String ATTRIBUTE_FRAGMENTS= "fragments"; //$NON-NLS-1$
-
- /** The members attribute */
- private static final String ATTRIBUTE_MEMBERS= "members"; //$NON-NLS-1$
-
- /** The patterns attribute */
- private static final String ATTRIBUTE_PATTERNS= "patterns"; //$NON-NLS-1$
-
- /** The policy attribute */
- private static final String ATTRIBUTE_POLICY= "policy"; //$NON-NLS-1$
-
- /** The qualified attribute */
- private static final String ATTRIBUTE_QUALIFIED= "qualified"; //$NON-NLS-1$
-
- /** The roots attribute */
- private static final String ATTRIBUTE_ROOTS= "roots"; //$NON-NLS-1$
-
- /** The target attribute */
- private static final String ATTRIBUTE_TARGET= "target"; //$NON-NLS-1$
-
- /** The units attribute */
- private static final String ATTRIBUTE_UNITS= "units"; //$NON-NLS-1$
-
- /** The move members policy */
- private static final String POLICY_MOVE_MEMBERS= "org.eclipse.wst.jsdt.ui.moveMembers"; //$NON-NLS-1$
-
- /** The move packages policy */
- private static final String POLICY_MOVE_PACKAGES= "org.eclipse.wst.jsdt.ui.movePackages"; //$NON-NLS-1$
-
- /** The move resources policy */
- private static final String POLICY_MOVE_RESOURCES= "org.eclipse.wst.jsdt.ui.moveResources"; //$NON-NLS-1$
-
- /** The move package fragment roots policy */
- private static final String POLICY_MOVE_ROOTS= "org.eclipse.wst.jsdt.ui.moveRoots"; //$NON-NLS-1$
-
- /** The destination */
- private Object fDestination;
-
- /** The files */
- private IFile[] fFiles;
-
- /** The folders */
- private IFolder[] fFolders;
-
- /** The package fragments */
- private IPackageFragment[] fFragments;
-
- /** The members */
- private IMember[] fMembers;
-
- /** The move policy */
- private String fMovePolicy= null;
-
- /** The patterns attribute */
- private String fPatterns= null;
-
- /** The qualified attribute */
- private boolean fQualified= false;
-
- /** The references attribute */
- private boolean fReferences= false;
-
- /** The package fragment roots */
- private IPackageFragmentRoot[] fRoots;
-
- /** The compilation units */
- private IJavaScriptUnit[] fUnits;
-
- /**
- * Creates a new refactoring descriptor.
- */
- public MoveDescriptor() {
- super(IJavaScriptRefactorings.MOVE);
- }
-
- /**
- * {@inheritDoc}
- */
- protected void populateArgumentMap() {
- super.populateArgumentMap();
- fArguments.put(ATTRIBUTE_POLICY, fMovePolicy);
- final String project= getProject();
- if (fDestination instanceof IJavaScriptElement)
- fArguments.put(ATTRIBUTE_DESTINATION, JavaScriptRefactoringDescriptor.elementToHandle(project, (IJavaScriptElement) fDestination));
- else if (fDestination instanceof IResource)
- fArguments.put(ATTRIBUTE_TARGET, JavaScriptRefactoringDescriptor.resourceToHandle(null, (IResource) fDestination));
- if (POLICY_MOVE_RESOURCES.equals(fMovePolicy)) {
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_REFERENCES, Boolean.toString(fReferences));
- fArguments.put(ATTRIBUTE_QUALIFIED, Boolean.toString(fQualified));
- if (fPatterns != null && !"".equals(fPatterns)) //$NON-NLS-1$
- fArguments.put(ATTRIBUTE_PATTERNS, fPatterns);
- fArguments.put(ATTRIBUTE_FILES, new Integer(fFiles.length).toString());
- for (int offset= 0; offset < fFiles.length; offset++)
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_ELEMENT + (offset + 1), JavaScriptRefactoringDescriptor.resourceToHandle(project, fFiles[offset]));
- fArguments.put(ATTRIBUTE_FOLDERS, new Integer(fFolders.length).toString());
- for (int offset= 0; offset < fFolders.length; offset++)
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_ELEMENT + (offset + fFiles.length + 1), JavaScriptRefactoringDescriptor.resourceToHandle(project, fFolders[offset]));
- fArguments.put(ATTRIBUTE_UNITS, new Integer(fUnits.length).toString());
- for (int offset= 0; offset < fUnits.length; offset++)
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_ELEMENT + (offset + fFolders.length + fFiles.length + 1), JavaScriptRefactoringDescriptor.elementToHandle(project, fUnits[offset]));
- } else if (POLICY_MOVE_ROOTS.equals(fMovePolicy)) {
- fArguments.put(ATTRIBUTE_ROOTS, new Integer(fRoots.length).toString());
- for (int offset= 0; offset < fRoots.length; offset++)
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_ELEMENT + (offset + 1), JavaScriptRefactoringDescriptor.elementToHandle(project, fRoots[offset]));
- } else if (POLICY_MOVE_PACKAGES.equals(fMovePolicy)) {
- fArguments.put(ATTRIBUTE_FRAGMENTS, new Integer(fFragments.length).toString());
- for (int offset= 0; offset < fFragments.length; offset++)
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_ELEMENT + (offset + 1), JavaScriptRefactoringDescriptor.elementToHandle(project, fFragments[offset]));
- } else if (POLICY_MOVE_MEMBERS.equals(fMovePolicy)) {
- fArguments.put(ATTRIBUTE_MEMBERS, new Integer(fMembers.length).toString());
- for (int offset= 0; offset < fMembers.length; offset++)
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_ELEMENT + (offset + 1), JavaScriptRefactoringDescriptor.elementToHandle(project, fMembers[offset]));
- }
- }
-
- /**
- * Sets the destination of the move.
- * <p>
- * Note: Clients may call only one of the <code>setDestination</code>
- * methods.
- * </p>
- *
- * @param element
- * the java element
- */
- public void setDestination(IJavaScriptElement element) {
- Assert.isNotNull(element);
- fDestination= element;
- }
-
- /**
- * Sets the destination of the move.
- * <p>
- * Note: Clients may call only one of the <code>setDestination</code>
- * methods.
- * </p>
- *
- * @param resource
- * the resource
- */
- public void setDestination(IResource resource) {
- Assert.isNotNull(resource);
- fDestination= resource;
- }
-
- /**
- * Sets the file name patterns to use during qualified name updating.
- * <p>
- * The syntax of the file name patterns is a sequence of individual name
- * patterns, separated by comma. Additionally, wildcard characters '*' (any
- * string) and '?' (any character) may be used.
- * </p>
- * <p>
- * Note: If file name patterns are set, qualified name updating must be
- * enabled by calling {@link #setUpdateQualifiedNames(boolean)}.
- * </p>
- * <p>
- * Note: Qualified name updating is currently applicable to files, folders
- * and compilation units. The default is to not update qualified names.
- * </p>
- *
- * @param patterns
- * the non-empty file name patterns string
- */
- public void setFileNamePatterns(final String patterns) {
- Assert.isNotNull(patterns);
- Assert.isLegal(!"".equals(patterns), "Pattern must not be empty"); //$NON-NLS-1$ //$NON-NLS-2$
- fPatterns= patterns;
- }
-
- /**
- * Sets the members to move.
- * <p>
- * Note: Clients must only call one of the <code>setMoveXXX</code>
- * methods.
- * </p>
- *
- * @param members
- * the members to move
- */
- public void setMoveMembers(final IMember[] members) {
- Assert.isNotNull(members);
- Assert.isTrue(fMovePolicy == null, "Clients must only call one of the 'setMoveXXX' methods."); //$NON-NLS-1$
- fMembers= members;
- fMovePolicy= POLICY_MOVE_MEMBERS;
- }
-
- /**
- * Sets the package fragment roots to move.
- * <p>
- * Note: Clients must only call one of the <code>setMoveXXX</code>
- * methods.
- * </p>
- *
- * @param roots
- * the package fragment roots to move
- */
- public void setMovePackageFragmentRoots(final IPackageFragmentRoot[] roots) {
- Assert.isNotNull(roots);
- Assert.isTrue(fMovePolicy == null, "Clients must only call one of the 'setMoveXXX' methods."); //$NON-NLS-1$
- fRoots= roots;
- fMovePolicy= POLICY_MOVE_ROOTS;
- }
-
- /**
- * Sets the package fragments to move.
- * <p>
- * Note: Clients must only call one of the <code>setMoveXXX</code>
- * methods.
- * </p>
- *
- * @param fragments
- * the package fragments to move
- */
- public void setMovePackages(final IPackageFragment[] fragments) {
- Assert.isNotNull(fragments);
- Assert.isTrue(fMovePolicy == null, "Clients must only call one of the 'setMoveXXX' methods."); //$NON-NLS-1$
- fFragments= fragments;
- fMovePolicy= POLICY_MOVE_PACKAGES;
- }
-
- /**
- * Sets the resources and compilation units to move.
- * <p>
- * Note: Clients must only call one of the <code>setMoveXXX</code>
- * methods.
- * </p>
- *
- * @param files
- * the files to move
- * @param folders
- * the folders to move
- * @param units
- * the compilation units to move
- */
- public void setMoveResources(final IFile[] files, final IFolder[] folders, final IJavaScriptUnit[] units) {
- Assert.isNotNull(files);
- Assert.isNotNull(folders);
- Assert.isNotNull(units);
- Assert.isTrue(fMovePolicy == null, "Clients must only call one of the 'setMoveXXX' methods."); //$NON-NLS-1$
- fFiles= files;
- fFolders= folders;
- fUnits= units;
- fMovePolicy= POLICY_MOVE_RESOURCES;
- }
-
- /**
- * Determines whether qualified names of the Java element should be renamed.
- * <p>
- * Qualified name updating adapts fully qualified names of the Java element
- * to be renamed in non-Java text files. Clients may specify file name
- * patterns by calling {@link #setFileNamePatterns(String)} to constrain the
- * set of text files to be processed.
- * </p>
- * <p>
- * Note: Qualified name updating is currently applicable to files, folders
- * and compilation units. The default is to use no file name patterns
- * (meaning that all files are processed).
- * </p>
- *
- * @param update
- * <code>true</code> to update qualified names,
- * <code>false</code> otherwise
- */
- public void setUpdateQualifiedNames(final boolean update) {
- fQualified= update;
- }
-
- /**
- * Determines whether references to the Java element should be renamed.
- *
- * @param update
- * <code>true</code> to update references, <code>false</code>
- * otherwise
- */
- public void setUpdateReferences(final boolean update) {
- fReferences= update;
- }
-
- /**
- * {@inheritDoc}
- */
- public RefactoringStatus validateDescriptor() {
- RefactoringStatus status= super.validateDescriptor();
- if (!status.hasFatalError()) {
- if (fMovePolicy == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.MoveDescriptor_no_elements_set));
- if (fDestination == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.MoveDescriptor_no_destination_set));
- }
- return status;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.java
deleted file mode 100644
index 6c95698e..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the move method refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class MoveMethodDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public MoveMethodDescriptor() {
- super(IJavaScriptRefactorings.MOVE_METHOD);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.java
deleted file mode 100644
index c6e08e18..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.java
+++ /dev/null
@@ -1,142 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.core.runtime.Assert;
-import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-import org.eclipse.wst.jsdt.core.IMember;
-import org.eclipse.wst.jsdt.core.IType;
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-import org.eclipse.wst.jsdt.internal.core.refactoring.descriptors.DescriptorMessages;
-
-/**
- * Refactoring descriptor for the move static members refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class MoveStaticMembersDescriptor extends JavaScriptRefactoringDescriptor {
-
- /** The delegate attribute */
- private static final String ATTRIBUTE_DELEGATE= "delegate"; //$NON-NLS-1$
-
- /** The deprecate attribute */
- private static final String ATTRIBUTE_DEPRECATE= "deprecate"; //$NON-NLS-1$
-
- /** The delegate attribute */
- private boolean fDelegate= false;
-
- /** The deprecate attribute */
- private boolean fDeprecate= false;
-
- /** The members attribute */
- private IMember[] fMembers;
-
- /** The type attribute */
- private IType fType= null;
-
- /**
- * Creates a new refactoring descriptor.
- */
- public MoveStaticMembersDescriptor() {
- super(IJavaScriptRefactorings.MOVE_STATIC_MEMBERS);
- }
-
- /**
- * {@inheritDoc}
- */
- protected void populateArgumentMap() {
- super.populateArgumentMap();
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_INPUT, elementToHandle(getProject(), fType));
- fArguments.put(ATTRIBUTE_DELEGATE, Boolean.valueOf(fDelegate).toString());
- fArguments.put(ATTRIBUTE_DEPRECATE, Boolean.valueOf(fDeprecate).toString());
- for (int index= 0; index < fMembers.length; index++)
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_ELEMENT + (index + 1), elementToHandle(getProject(), fMembers[index]));
- }
-
- /**
- * Determines whether the delegate for a member should be declared as
- * deprecated.
- *
- * @param deprecate
- * <code>true</code> to deprecate the delegate,
- * <code>false</code> otherwise
- */
- public void setDeprecateDelegate(final boolean deprecate) {
- fDeprecate= deprecate;
- }
-
- /**
- * Sets the destination type of the move operation.
- *
- * @param type
- * the destination type
- */
- public void setDestinationType(final IType type) {
- Assert.isNotNull(type);
- fType= type;
- }
-
- /**
- * Determines whether the the original members should be kept as delegates
- * to the moved ones.
- *
- * @param delegate
- * <code>true</code> to keep the originals, <code>false</code>
- * otherwise
- */
- public void setKeepOriginal(final boolean delegate) {
- fDelegate= delegate;
- }
-
- /**
- * Sets the static members to move.
- *
- * @param members
- * the members to move
- */
- public void setMembers(final IMember[] members) {
- Assert.isNotNull(members);
- fMembers= members;
- }
-
- /**
- * {@inheritDoc}
- */
- public RefactoringStatus validateDescriptor() {
- final RefactoringStatus status= super.validateDescriptor();
- if (fType == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.MoveStaticMembersDescriptor_no_type));
- if (fMembers == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.MoveStaticMembersDescriptor_no_members));
- else {
- for (int index= 0; index < fMembers.length; index++) {
- if (fMembers[index] == null) {
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.MoveStaticMembersDescriptor_invalid_members));
- break;
- }
- }
- }
- return status;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/PullUpDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/PullUpDescriptor.java
deleted file mode 100644
index 4f7d2d03..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/PullUpDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the pull up refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class PullUpDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public PullUpDescriptor() {
- super(IJavaScriptRefactorings.PULL_UP);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/PushDownDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/PushDownDescriptor.java
deleted file mode 100644
index 831fe3c1..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/PushDownDescriptor.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-
-/**
- * Refactoring descriptor for the push down refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class PushDownDescriptor extends JavaScriptRefactoringDescriptor {
-
- /**
- * Creates a new refactoring descriptor.
- */
- public PushDownDescriptor() {
- super(IJavaScriptRefactorings.PUSH_DOWN);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.java
deleted file mode 100644
index bc87c91f..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.java
+++ /dev/null
@@ -1,568 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.core.runtime.Assert;
-import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-import org.eclipse.wst.jsdt.core.IJavaScriptElement;
-import org.eclipse.wst.jsdt.core.ITypeParameter;
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-import org.eclipse.wst.jsdt.internal.core.refactoring.descriptors.DescriptorMessages;
-
-/**
- * Refactoring descriptor for the rename java element refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class RenameJavaScriptElementDescriptor extends JavaScriptRefactoringDescriptor {
-
- /** The delegate attribute */
- private static final String ATTRIBUTE_DELEGATE= "delegate"; //$NON-NLS-1$
-
- /** The deprecate attribute */
- private static final String ATTRIBUTE_DEPRECATE= "deprecate"; //$NON-NLS-1$
-
- /** The hierarchical attribute */
- private static final String ATTRIBUTE_HIERARCHICAL= "hierarchical"; //$NON-NLS-1$
-
- /** The match strategy attribute */
- private static final String ATTRIBUTE_MATCH_STRATEGY= "matchStrategy"; //$NON-NLS-1$
-
- /** The parameter attribute */
- private static final String ATTRIBUTE_PARAMETER= "parameter"; //$NON-NLS-1$
-
- /** The patterns attribute */
- private static final String ATTRIBUTE_PATTERNS= "patterns"; //$NON-NLS-1$
-
- /** The qualified attribute */
- private static final String ATTRIBUTE_QUALIFIED= "qualified"; //$NON-NLS-1$
-
- /** The rename getter attribute */
- private static final String ATTRIBUTE_RENAME_GETTER= "getter"; //$NON-NLS-1$
-
- /** The rename setter attribute */
- private static final String ATTRIBUTE_RENAME_SETTER= "setter"; //$NON-NLS-1$
-
- /** The similar declarations attribute */
- private static final String ATTRIBUTE_SIMILAR_DECLARATIONS= "similarDeclarations"; //$NON-NLS-1$
-
- /** The textual matches attribute */
- private static final String ATTRIBUTE_TEXTUAL_MATCHES= "textual"; //$NON-NLS-1$
-
- /**
- * Similar declaration updating strategy which finds exact names and
- * embedded names as well (value: <code>2</code>).
- */
- public static final int STRATEGY_EMBEDDED= 2;
-
- /**
- * Similar declaration updating strategy which finds exact names only
- * (value: <code>1</code>).
- */
- public static final int STRATEGY_EXACT= 1;
-
- /**
- * Similar declaration updating strategy which finds exact names, embedded
- * names and name suffixes (value: <code>3</code>).
- */
- public static final int STRATEGY_SUFFIX= 3;
-
- /** The delegate attribute */
- private boolean fDelegate= false;
-
- /** The deprecate attribute */
- private boolean fDeprecate= false;
-
- /** The hierarchical attribute */
- private boolean fHierarchical= false;
-
- /** The java element attribute */
- private IJavaScriptElement fJavaElement= null;
-
- /** The match strategy */
- private int fMatchStrategy= STRATEGY_EXACT;
-
- /** The name attribute */
- private String fName= null;
-
- /** The patterns attribute */
- private String fPatterns= null;
-
- /** The qualified attribute */
- private boolean fQualified= false;
-
- /** The references attribute */
- private boolean fReferences= false;
-
- /** The rename getter attribute */
- private boolean fRenameGetter= false;
-
- /** The rename setter attribute */
- private boolean fRenameSetter= false;
-
- /** The similar declarations attribute */
- private boolean fSimilarDeclarations= false;
-
- /** The textual attribute */
- private boolean fTextual= false;
-
- /**
- * Creates a new refactoring descriptor.
- *
- * @param id
- * the unique id of the rename refactoring
- * @see IJavaScriptRefactorings
- */
- public RenameJavaScriptElementDescriptor(final String id) {
- super(id);
- Assert.isLegal(checkId(id), "Refactoring id is not a rename refactoring id"); //$NON-NLS-1$
- }
-
- /**
- * Checks whether the refactoring id is valid.
- *
- * @param id
- * the refactoring id
- * @return the outcome of the validation
- */
- private boolean checkId(final String id) {
- Assert.isNotNull(id);
- if (id.equals(IJavaScriptRefactorings.RENAME_JAVASCRIPT_UNIT))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_ENUM_CONSTANT))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_FIELD))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_JAVA_PROJECT))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_LOCAL_VARIABLE))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_METHOD))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_PACKAGE))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_RESOURCE))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_SOURCE_FOLDER))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_TYPE))
- return true;
- else if (id.equals(IJavaScriptRefactorings.RENAME_TYPE_PARAMETER))
- return true;
- return false;
- }
-
- /**
- * {@inheritDoc}
- */
- protected void populateArgumentMap() {
- super.populateArgumentMap();
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_NAME, fName);
- if (getID().equals(IJavaScriptRefactorings.RENAME_TYPE_PARAMETER)) {
- final ITypeParameter parameter= (ITypeParameter) fJavaElement;
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_INPUT, elementToHandle(getProject(), parameter.getDeclaringMember()));
- fArguments.put(ATTRIBUTE_PARAMETER, parameter.getElementName());
- } else
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_INPUT, elementToHandle(getProject(), fJavaElement));
- final int type= fJavaElement.getElementType();
- if (type != IJavaScriptElement.PACKAGE_FRAGMENT_ROOT)
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_REFERENCES, Boolean.toString(fReferences));
- if (type == IJavaScriptElement.FIELD) {
- fArguments.put(ATTRIBUTE_RENAME_GETTER, Boolean.toString(fRenameGetter));
- fArguments.put(ATTRIBUTE_RENAME_SETTER, Boolean.toString(fRenameSetter));
- }
- switch (type) {
- case IJavaScriptElement.PACKAGE_FRAGMENT:
- case IJavaScriptElement.TYPE:
- case IJavaScriptElement.FIELD:
- fArguments.put(ATTRIBUTE_TEXTUAL_MATCHES, Boolean.toString(fTextual));
- break;
- default:
- break;
- }
- switch (type) {
- case IJavaScriptElement.METHOD:
- case IJavaScriptElement.FIELD:
- fArguments.put(ATTRIBUTE_DEPRECATE, Boolean.toString(fDeprecate));
- fArguments.put(ATTRIBUTE_DELEGATE, Boolean.toString(fDelegate));
- break;
- default:
- break;
- }
- switch (type) {
- case IJavaScriptElement.PACKAGE_FRAGMENT:
- case IJavaScriptElement.TYPE:
- fArguments.put(ATTRIBUTE_QUALIFIED, Boolean.toString(fQualified));
- if (fPatterns != null && !"".equals(fPatterns)) //$NON-NLS-1$
- fArguments.put(ATTRIBUTE_PATTERNS, fPatterns);
- break;
- default:
- break;
- }
- switch (type) {
- case IJavaScriptElement.TYPE:
- fArguments.put(ATTRIBUTE_SIMILAR_DECLARATIONS, Boolean.toString(fSimilarDeclarations));
- fArguments.put(ATTRIBUTE_MATCH_STRATEGY, Integer.toString(fMatchStrategy));
- break;
- default:
- break;
- }
- switch (type) {
- case IJavaScriptElement.PACKAGE_FRAGMENT:
- fArguments.put(ATTRIBUTE_HIERARCHICAL, Boolean.toString(fHierarchical));
- break;
- default:
- break;
- }
- }
-
- /**
- * Determines whether the delegate for a Java element should be declared as
- * deprecated.
- * <p>
- * Note: Deprecation of the delegate is currently applicable to the Java elements
- * {@link org.eclipse.wst.jsdt.core.IFunction} and {@link org.eclipse.wst.jsdt.core.IField}. The default is to not deprecate the
- * delegate.
- * </p>
- *
- * @param deprecate
- * <code>true</code> to deprecate the delegate,
- * <code>false</code> otherwise
- */
- public void setDeprecateDelegate(final boolean deprecate) {
- fDeprecate= deprecate;
- }
-
- /**
- * Sets the file name patterns to use during qualified name updating.
- * <p>
- * The syntax of the file name patterns is a sequence of individual name
- * patterns, separated by comma. Additionally, wildcard characters '*' (any
- * string) and '?' (any character) may be used.
- * </p>
- * <p>
- * Note: If file name patterns are set, qualified name updating must be
- * enabled by calling {@link #setUpdateQualifiedNames(boolean)}.
- * </p>
- * <p>
- * Note: Qualified name updating is currently applicable to the Java elements
- * {@link org.eclipse.wst.jsdt.core.IPackageFragment} and {@link org.eclipse.wst.jsdt.core.IType}. The default is to use no
- * file name patterns (meaning that all files are processed).
- * </p>
- *
- * @param patterns
- * the non-empty file name patterns string
- */
- public void setFileNamePatterns(final String patterns) {
- Assert.isNotNull(patterns);
- Assert.isLegal(!"".equals(patterns), "Pattern must not be empty"); //$NON-NLS-1$ //$NON-NLS-2$
- fPatterns= patterns;
- }
-
- /**
- * Sets the Java element to be renamed.
- * <p>
- * Note: If the Java element to be renamed is of type
- * {@link IJavaScriptElement#JAVASCRIPT_PROJECT}, clients are required to to set the
- * project name to <code>null</code>.
- * </p>
- *
- * @param element
- * the Java element to be renamed
- */
- public void setJavaElement(final IJavaScriptElement element) {
- Assert.isNotNull(element);
- fJavaElement= element;
- }
-
- /**
- * Determines whether the the original Java element should be kept as
- * delegate to the renamed one.
- * <p>
- * Note: Keeping of original elements as delegates is currently applicable to the Java
- * elements {@link org.eclipse.wst.jsdt.core.IFunction} and {@link org.eclipse.wst.jsdt.core.IField}. The default is to not keep
- * the original as delegate.
- * </p>
- *
- * @param delegate
- * <code>true</code> to keep the original, <code>false</code>
- * otherwise
- */
- public void setKeepOriginal(final boolean delegate) {
- fDelegate= delegate;
- }
-
- /**
- * Determines which strategy should be used during similar declaration
- * updating.
- * <p>
- * Valid arguments are {@link #STRATEGY_EXACT}, {@link #STRATEGY_EMBEDDED}
- * or {@link #STRATEGY_SUFFIX}.
- * </p>
- * <p>
- * Note: Similar declaration updating is currently applicable to Java elements of type
- * {@link org.eclipse.wst.jsdt.core.IType}. The default is to use the {@link #STRATEGY_EXACT} match
- * strategy.
- * </p>
- *
- * @param strategy
- * the match strategy to use
- */
- public void setMatchStrategy(final int strategy) {
- Assert.isLegal(strategy == STRATEGY_EXACT || strategy == STRATEGY_EMBEDDED || strategy == STRATEGY_SUFFIX, "Wrong match strategy argument"); //$NON-NLS-1$
- fMatchStrategy= strategy;
- }
-
- /**
- * Sets the new name to rename the Java element to.
- *
- * @param name
- * the non-empty new name to set
- */
- public void setNewName(final String name) {
- Assert.isNotNull(name);
- Assert.isLegal(!"".equals(name), "Name must not be empty"); //$NON-NLS-1$//$NON-NLS-2$
- fName= name;
- }
-
- /**
- * Sets the project name of this refactoring.
- * <p>
- * Note: If the Java element to be renamed is of type
- * {@link IJavaScriptElement#JAVASCRIPT_PROJECT}, clients are required to to set the
- * project name to <code>null</code>.
- * </p>
- * <p>
- * The default is to associate the refactoring with the workspace.
- * </p>
- *
- * @param project
- * the non-empty project name to set, or <code>null</code> for
- * the workspace
- *
- * @see #getProject()
- */
- public void setProject(final String project) {
- super.setProject(project);
- }
-
- /**
- * Determines whether getter methods for the Java element should be renamed.
- * <p>
- * Note: Renaming of getter methods is applicable for {@link org.eclipse.wst.jsdt.core.IField}
- * elements which do not represent enum constants only. The default is to
- * not rename any getter methods.
- * </p>
- *
- * @param rename
- * <code>true</code> to rename getter methods,
- * <code>false</code> otherwise
- */
- public void setRenameGetters(final boolean rename) {
- fRenameGetter= rename;
- }
-
- /**
- * Determines whether setter methods for the Java element should be renamed.
- * <p>
- * Note: Renaming of setter methods is applicable for {@link org.eclipse.wst.jsdt.core.IField}
- * elements which do not represent enum constants only. The default is to
- * not rename any setter methods.
- * </p>
- *
- * @param rename
- * <code>true</code> to rename setter methods,
- * <code>false</code> otherwise
- */
- public void setRenameSetters(final boolean rename) {
- fRenameSetter= rename;
- }
-
- /**
- * Determines whether other Java elements in the hierarchy of the input
- * element should be renamed as well.
- * <p>
- * Note: Hierarchical updating is currently applicable for Java elements of
- * type {@link org.eclipse.wst.jsdt.core.IPackageFragment}. The default is to not update Java
- * elements hierarchically.
- * </p>
- *
- * @param update
- * <code>true</code> to update hierarchically,
- * <code>false</code> otherwise
- */
- public void setUpdateHierarchy(final boolean update) {
- fHierarchical= update;
- }
-
- /**
- * Determines whether qualified names of the Java element should be renamed.
- * <p>
- * Qualified name updating adapts fully qualified names of the Java element
- * to be renamed in non-Java text files. Clients may specify file name
- * patterns by calling {@link #setFileNamePatterns(String)} to constrain the
- * set of text files to be processed.
- * </p>
- * <p>
- * Note: Qualified name updating is currently applicable to the Java elements
- * {@link org.eclipse.wst.jsdt.core.IPackageFragment} and {@link org.eclipse.wst.jsdt.core.IType}. The default is to not rename
- * qualified names.
- * </p>
- *
- * @param update
- * <code>true</code> to update qualified names,
- * <code>false</code> otherwise
- */
- public void setUpdateQualifiedNames(final boolean update) {
- fQualified= update;
- }
-
- /**
- * Determines whether references to the Java element should be renamed.
- * <p>
- * Note: Reference updating is currently applicable to all Java element types except
- * {@link org.eclipse.wst.jsdt.core.IPackageFragmentRoot}. The default is to not update references.
- * </p>
- *
- * @param update
- * <code>true</code> to update references, <code>false</code>
- * otherwise
- */
- public void setUpdateReferences(final boolean update) {
- fReferences= update;
- }
-
- /**
- * Determines whether similar declarations of the Java element should be
- * updated.
- * <p>
- * Note: Similar declaration updating is currently applicable to Java elements of type
- * {@link org.eclipse.wst.jsdt.core.IType}. The default is to not update similar declarations.
- * </p>
- *
- * @param update
- * <code>true</code> to update similar declarations,
- * <code>false</code> otherwise
- */
- public void setUpdateSimilarDeclarations(final boolean update) {
- fSimilarDeclarations= update;
- }
-
- /**
- * Determines whether textual occurrences of the Java element should be
- * renamed.
- * <p>
- * Textual occurrence updating adapts textual occurrences of the Java
- * element to be renamed in Java comments and Java strings.
- * </p>
- * <p>
- * Note: Textual occurrence updating is currently applicable to the Java elements
- * {@link org.eclipse.wst.jsdt.core.IPackageFragment}, {@link org.eclipse.wst.jsdt.core.IType} and {@link org.eclipse.wst.jsdt.core.IField}. The default
- * is to not rename textual occurrences.
- * </p>
- *
- * @param update
- * <code>true</code> to update occurrences, <code>false</code>
- * otherwise
- */
- public void setUpdateTextualOccurrences(final boolean update) {
- fTextual= update;
- }
-
- /**
- * {@inheritDoc}
- */
- public RefactoringStatus validateDescriptor() {
- RefactoringStatus status= super.validateDescriptor();
- if (fName == null || "".equals(fName)) //$NON-NLS-1$
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameResourceDescriptor_no_new_name));
- if (fJavaElement == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_no_java_element));
- else {
- final int type= fJavaElement.getElementType();
- if (type == IJavaScriptElement.JAVASCRIPT_PROJECT && getProject() != null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_project_constraint));
- if (type == IJavaScriptElement.PACKAGE_FRAGMENT_ROOT && fReferences)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_reference_constraint));
- if (fTextual) {
- switch (type) {
- case IJavaScriptElement.PACKAGE_FRAGMENT:
- case IJavaScriptElement.TYPE:
- case IJavaScriptElement.FIELD:
- break;
- default:
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_textual_constraint));
- }
- }
- if (fDeprecate) {
- switch (type) {
- case IJavaScriptElement.METHOD:
- case IJavaScriptElement.FIELD:
- break;
- default:
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_deprecation_constraint));
- }
- }
- if (fDelegate) {
- switch (type) {
- case IJavaScriptElement.METHOD:
- case IJavaScriptElement.FIELD:
- break;
- default:
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_delegate_constraint));
- }
- }
- if (fRenameGetter || fRenameSetter) {
- if (type != IJavaScriptElement.FIELD)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_accessor_constraint));
- }
- if (fQualified) {
- switch (type) {
- case IJavaScriptElement.PACKAGE_FRAGMENT:
- case IJavaScriptElement.TYPE:
- break;
- default:
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_qualified_constraint));
- }
- }
- if (fSimilarDeclarations) {
- switch (type) {
- case IJavaScriptElement.TYPE:
- break;
- default:
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_similar_constraint));
- }
- }
- if (fHierarchical) {
- switch (type) {
- case IJavaScriptElement.PACKAGE_FRAGMENT:
- break;
- default:
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameJavaElementDescriptor_hierarchical_constraint));
- }
- }
- }
- return status;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameLocalVariableDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameLocalVariableDescriptor.java
deleted file mode 100644
index c4492d4c..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameLocalVariableDescriptor.java
+++ /dev/null
@@ -1,132 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.core.runtime.Assert;
-import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-import org.eclipse.wst.jsdt.core.IJavaScriptUnit;
-import org.eclipse.wst.jsdt.core.ISourceRange;
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-import org.eclipse.wst.jsdt.internal.core.refactoring.descriptors.DescriptorMessages;
-
-/**
- * Refactoring descriptor for the rename local variable refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class RenameLocalVariableDescriptor extends JavaScriptRefactoringDescriptor {
-
- /** The name attribute */
- private String fName= null;
-
- /** The references attribute */
- private boolean fReferences= false;
-
- /** The selection attribute */
- private ISourceRange fSelection= null;
-
- /** The compilation unit attribute */
- private IJavaScriptUnit fUnit= null;
-
- /**
- * Creates a new refactoring descriptor.
- */
- public RenameLocalVariableDescriptor() {
- super(IJavaScriptRefactorings.RENAME_LOCAL_VARIABLE);
- }
-
- /**
- * {@inheritDoc}
- */
- protected void populateArgumentMap() {
- super.populateArgumentMap();
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_NAME, fName);
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_INPUT, elementToHandle(getProject(), fUnit));
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_SELECTION, new Integer(fSelection.getOffset()).toString() + " " + new Integer(fSelection.getLength()).toString()); //$NON-NLS-1$
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_REFERENCES, Boolean.toString(fReferences));
- }
-
- /**
- * Sets the compilation unit which contains the local variable.
- *
- * @param unit
- * the compilation unit to set
- */
- public void setCompilationUnit(final IJavaScriptUnit unit) {
- Assert.isNotNull(unit);
- fUnit= unit;
- }
-
- /**
- * Sets the new name to rename the local variable to.
- *
- * @param name
- * the non-empty new name to set
- */
- public void setNewName(final String name) {
- Assert.isNotNull(name);
- Assert.isLegal(!"".equals(name), "Name must not be empty"); //$NON-NLS-1$//$NON-NLS-2$
- fName= name;
- }
-
- /**
- * Sets the selection within the compilation unit which references the local
- * variable to rename.
- *
- * @param selection
- * the selection to set
- */
- public void setSelection(final ISourceRange selection) {
- Assert.isNotNull(selection);
- fSelection= selection;
- }
-
- /**
- * Determines whether references to the local variable should be renamed.
- * <p>
- * The default is to not update references.
- * </p>
- *
- * @param update
- * <code>true</code> to update references, <code>false</code>
- * otherwise
- */
- public void setUpdateReferences(final boolean update) {
- fReferences= update;
- }
-
- /**
- * {@inheritDoc}
- */
- public RefactoringStatus validateDescriptor() {
- RefactoringStatus status= super.validateDescriptor();
- if (fName == null || "".equals(fName)) //$NON-NLS-1$
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameResourceDescriptor_no_new_name));
- if (fUnit == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameLocalVariableDescriptor_no_compilation_unit));
- if (fSelection == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameLocalVariableDescriptor_no_selection));
- return status;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameResourceDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameResourceDescriptor.java
deleted file mode 100644
index f662ad36..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameResourceDescriptor.java
+++ /dev/null
@@ -1,122 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.core.resources.IProject;
-import org.eclipse.core.resources.IResource;
-import org.eclipse.core.runtime.Assert;
-import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-import org.eclipse.wst.jsdt.internal.core.refactoring.descriptors.DescriptorMessages;
-
-/**
- * Refactoring descriptor for the rename resource refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class RenameResourceDescriptor extends JavaScriptRefactoringDescriptor {
-
- /** The name attribute */
- private String fName= null;
-
- /** The resource attribute */
- private IResource fResource= null;
-
- /**
- * Creates a new refactoring descriptor.
- */
- public RenameResourceDescriptor() {
- super(IJavaScriptRefactorings.RENAME_RESOURCE);
- }
-
- /**
- * {@inheritDoc}
- */
- protected void populateArgumentMap() {
- super.populateArgumentMap();
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_INPUT, resourceToHandle(getProject(), fResource));
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_NAME, fName);
- }
-
- /**
- * Sets the new name to rename the resource to.
- *
- * @param name
- * the non-empty new name to set
- */
- public void setNewName(final String name) {
- Assert.isNotNull(name);
- Assert.isLegal(!"".equals(name), "Name must not be empty"); //$NON-NLS-1$//$NON-NLS-2$
- fName= name;
- }
-
- /**
- * Sets the project name of this refactoring.
- * <p>
- * Note: If the resource to be renamed is of type {@link IResource#PROJECT},
- * clients are required to to set the project name to <code>null</code>.
- * </p>
- * <p>
- * The default is to associate the refactoring with the workspace.
- * </p>
- *
- * @param project
- * the non-empty project name to set, or <code>null</code> for
- * the workspace
- *
- * @see #getProject()
- */
- public void setProject(final String project) {
- super.setProject(project);
- }
-
- /**
- * Sets the resource to be renamed.
- * <p>
- * Note: If the resource to be renamed is of type {@link IResource#PROJECT},
- * clients are required to to set the project name to <code>null</code>.
- * </p>
- *
- * @param resource
- * the resource to be renamed
- */
- public void setResource(final IResource resource) {
- Assert.isNotNull(resource);
- fResource= resource;
- }
-
- /**
- * {@inheritDoc}
- */
- public RefactoringStatus validateDescriptor() {
- RefactoringStatus status= super.validateDescriptor();
- if (fResource == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameResourceDescriptor_no_resource));
- if (fName == null || "".equals(fName)) //$NON-NLS-1$
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameResourceDescriptor_no_new_name));
- if (fResource instanceof IProject && getProject() != null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.RenameResourceDescriptor_project_constraint));
- return status;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/UseSupertypeDescriptor.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/UseSupertypeDescriptor.java
deleted file mode 100644
index bfd286fa..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/core/refactoring/descriptors/UseSupertypeDescriptor.java
+++ /dev/null
@@ -1,124 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.refactoring.descriptors;
-
-import org.eclipse.core.runtime.Assert;
-import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-import org.eclipse.wst.jsdt.core.IType;
-import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings;
-import org.eclipse.wst.jsdt.internal.core.refactoring.descriptors.DescriptorMessages;
-
-/**
- * Refactoring descriptor for the use supertype refactoring.
- * <p>
- * An instance of this refactoring descriptor may be obtained by calling
- * {@link org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor()} on a refactoring
- * contribution requested by invoking
- * {@link org.eclipse.ltk.core.refactoring.RefactoringCore#getRefactoringContribution(String)} with the
- * appropriate refactoring id.
- * </p>
- * <p>
- * Note: this class is not intended to be instantiated by clients.
- * </p>
- *
- * Provisional API: This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- */
-public final class UseSupertypeDescriptor extends JavaScriptRefactoringDescriptor {
-
- /** The instanceof attribute */
- private static final String ATTRIBUTE_INSTANCEOF= "instanceof"; //$NON-NLS-1$
-
- /** The instanceof attribute */
- private boolean fInstanceof= false;
-
- /** The subtype attribute */
- private IType fSubType= null;
-
- /** The supertype attribute */
- private IType fSupertype= null;
-
- /**
- * Creates a new refactoring descriptor.
- */
- public UseSupertypeDescriptor() {
- super(IJavaScriptRefactorings.USE_SUPER_TYPE);
- }
-
- /**
- * {@inheritDoc}
- */
- protected void populateArgumentMap() {
- super.populateArgumentMap();
- fArguments.put(ATTRIBUTE_INSTANCEOF, Boolean.valueOf(fInstanceof).toString());
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_INPUT, elementToHandle(getProject(), fSubType));
- fArguments.put(JavaScriptRefactoringDescriptor.ATTRIBUTE_ELEMENT + 1, elementToHandle(getProject(), fSupertype));
- }
-
- /**
- * Determines whether 'instanceof' statements are considered as candidates
- * to replace the subtype occurrence by one of its supertypes.
- * <p>
- * The default is to not replace the subtype occurrence.
- * </p>
- *
- * @param replace
- * <code>true</code> to replace subtype occurrences in
- * 'instanceof' statements, <code>false</code> otherwise
- */
- public void setReplaceInstanceof(final boolean replace) {
- fInstanceof= replace;
- }
-
- /**
- * Sets the subtype of the refactoring.
- * <p>
- * Occurrences of the subtype are replaced by the supertype set by
- * {@link #setSupertype(IType)} where possible.
- * </p>
- *
- * @param type
- * the subtype to set
- */
- public void setSubtype(final IType type) {
- Assert.isNotNull(type);
- fSubType= type;
- }
-
- /**
- * Sets the supertype of the refactoring.
- * <p>
- * Occurrences of the subtype set by {@link #setSubtype(IType)} are replaced
- * by the supertype where possible.
- * </p>
- *
- * @param type
- * the supertype to set
- */
- public void setSupertype(final IType type) {
- Assert.isNotNull(type);
- fSupertype= type;
- }
-
- /**
- * {@inheritDoc}
- */
- public RefactoringStatus validateDescriptor() {
- RefactoringStatus status= super.validateDescriptor();
- if (fSubType == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.UseSupertypeDescriptor_no_subtype));
- if (fSupertype == null)
- status.merge(RefactoringStatus.createFatalErrorStatus(DescriptorMessages.UseSupertypeDescriptor_no_supertype));
- return status;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/IStatusConstants.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/IStatusConstants.java
deleted file mode 100644
index 3139c665..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/IStatusConstants.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.internal.core.manipulation;
-
-/**
- * Defines status codes relevant to the Java Manipulation plug-in.
- */
-public interface IStatusConstants {
-
- // Java Manipulation status constants start at 10000 to make sure that we don't
- // collide with resource and java model constants.
-
- public static final int INTERNAL_ERROR= 10001;
-
- }
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaElementPropertyTester.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaElementPropertyTester.java
deleted file mode 100644
index d4364265..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaElementPropertyTester.java
+++ /dev/null
@@ -1,167 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.wst.jsdt.internal.core.manipulation;
-
-import java.util.regex.Pattern;
-
-import org.eclipse.core.runtime.CoreException;
-
-import org.eclipse.core.expressions.PropertyTester;
-
-import org.eclipse.wst.jsdt.core.IJavaScriptElement;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.core.IPackageFragmentRoot;
-import org.eclipse.wst.jsdt.core.JavaScriptModelException;
-
-/**
- * A property tester for various properties of IJavaElements.
- * Might be moved down to jdt.core. See bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=127085
- *
- * @since 3.3
- */
-public class JavaElementPropertyTester extends PropertyTester {
-
- /**
- * A property indicating the file name (value <code>"name"</code>). Regular expressions are supported.
- */
- public static final String NAME = "name"; //$NON-NLS-1$
-
- /**
- * A property indicating if the element is in a open and existing Java project (value <code>"isInJavaProject"</code>).
- */
- public static final String IS_IN_JAVA_PROJECT = "isInJavaProject"; //$NON-NLS-1$
-
- /**
- * A property indicating if the element is in a open and existing Java project that also implements the given nature (value <code>"isInJavaProjectWithNature"</code>).
- */
- public static final String IS_IN_JAVA_PROJECT_WITH_NATURE = "isInJavaProjectWithNature"; //$NON-NLS-1$
-
- /**
- * A property indicating if the element is on the classpath (value <code>"isOnClasspath"</code>).
- */
- public static final String IS_ON_CLASSPATH = "isOnClasspath"; //$NON-NLS-1$
-
- /**
- * A property indicating if the a type of the given qualified name is on the classpath (value <code>"hasTypeOnClasspath"</code>).
- */
- public static final String HAS_TYPE_ON_CLASSPATH = "hasTypeOnClasspath"; //$NON-NLS-1$
-
- /**
- * A property indicating if the element is a source folder or is inside a source folder. (value <code>"inSourceFolder"</code>).
- * <code>false</code> is returned if the element does not exist.
- */
- public static final String IN_SOURCE_FOLDER = "inSourceFolder"; //$NON-NLS-1$
-
- /**
- * A property indicating if the element is an archive or is inside an archive. (value <code>"inArchive"</code>).
- * <code>false</code> is returned if the element does not exist.
- */
- public static final String IN_ARCHIVE = "inArchive"; //$NON-NLS-1$
-
- /**
- * A property indicating if the element is an archive (value <code>"inExternalArchive"</code>).
- * <code>false</code> is returned if the element does not exist.
- */
- public static final String IN_EXTERNAL_ARCHIVE = "inExternalArchive"; //$NON-NLS-1$
-
- /**
- * A property indicating a option in the Java project of the selected element
- * (value <code>"projectOption"</code>). If two arguments are given,
- * this treats the first as the option name, and the second as the option
- * property value. If only one argument (or just the expected value) is
- * given, this treats it as the property name, and simply tests if the option is
- * avaiable in the project specific options.
- */
- public static final String PROJECT_OPTION = "projectOption"; //$NON-NLS-1$
-
-
- /* (non-Javadoc)
- * @see org.eclipse.core.expressions.IPropertyTester#test(java.lang.Object, java.lang.String, java.lang.Object[], java.lang.Object)
- */
- public boolean test(Object receiver, String method, Object[] args, Object expectedValue) {
- if (!(receiver instanceof IJavaScriptElement)) {
- return false;
- }
- IJavaScriptElement res = (IJavaScriptElement) receiver;
- if (method.equals(NAME)) {
- return Pattern.matches(toString(expectedValue), res.getElementName());
- } else if (method.equals(IS_IN_JAVA_PROJECT)) {
- IJavaScriptProject javaProject= res.getJavaScriptProject();
- return javaProject != null && javaProject.exists() && javaProject.getProject().isOpen();
- } else if (method.equals(IS_IN_JAVA_PROJECT_WITH_NATURE)) {
- IJavaScriptProject javaProject= res.getJavaScriptProject();
- if (javaProject != null && javaProject.exists() && javaProject.getProject().isOpen() ) {
- if (expectedValue != null) {
- try {
- return javaProject.getProject().hasNature(toString(expectedValue));
- } catch (CoreException e) {
- return false;
- }
- }
- }
- return false;
- } else if (method.equals(IS_ON_CLASSPATH)) {
- IJavaScriptProject javaProject= res.getJavaScriptProject();
- if (javaProject != null && javaProject.exists()) {
- return javaProject.isOnIncludepath(res);
- }
- return false;
- } else if (method.equals(IN_SOURCE_FOLDER)) {
- IJavaScriptElement root= res.getAncestor(IJavaScriptElement.PACKAGE_FRAGMENT_ROOT);
- if (root != null) {
- try {
- return ((IPackageFragmentRoot) root).getKind() == IPackageFragmentRoot.K_SOURCE;
- } catch (JavaScriptModelException e) {
- // ignore
- }
- }
- return false;
- } else if (method.equals(IN_ARCHIVE)) {
- IJavaScriptElement root= res.getAncestor(IJavaScriptElement.PACKAGE_FRAGMENT_ROOT);
- if (root != null) {
- return ((IPackageFragmentRoot) root).isArchive();
- }
- return false;
- } else if (method.equals(IN_EXTERNAL_ARCHIVE)) {
- IJavaScriptElement root= res.getAncestor(IJavaScriptElement.PACKAGE_FRAGMENT_ROOT);
- if (root != null) {
- return ((IPackageFragmentRoot) root).isExternal();
- }
- return false;
- } else if (method.equals(PROJECT_OPTION)) {
- IJavaScriptProject project= res.getJavaScriptProject();
- if (project != null) {
- if (args.length == 2) {
- String current= project.getOption(toString(args[0]), true);
- return current != null && current.equals(args[1]);
- } else if (args.length == 1) {
- return project.getOption(toString(args[0]), false) != null;
- }
- }
- return false;
- } else if (method.equals(HAS_TYPE_ON_CLASSPATH)) {
- IJavaScriptProject javaProject= res.getJavaScriptProject();
- if (javaProject != null && javaProject.exists()) {
- try {
- return javaProject.findType(toString(expectedValue)) != null;
- } catch (JavaScriptModelException e) {
- return false;
- }
- }
- }
- return false;
- }
-
- private String toString(Object expectedValue) {
- return expectedValue == null ? "" : expectedValue.toString(); //$NON-NLS-1$
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationMessages.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationMessages.java
deleted file mode 100644
index 955e42db..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationMessages.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.internal.core.manipulation;
-
-import org.eclipse.osgi.util.NLS;
-
-public class JavaManipulationMessages extends NLS {
-
- private static final String BUNDLE_NAME= "org.eclipse.wst.jsdt.internal.core.manipulation.JavaManipulationMessages"; //$NON-NLS-1$
-
- private JavaManipulationMessages() {
- }
-
- static {
- // initialize resource bundle
- NLS.initializeMessages(BUNDLE_NAME, JavaManipulationMessages.class);
- }
-
- public static String JavaManipulationMessages_internalError;
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationMessages.properties b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationMessages.properties
deleted file mode 100644
index 04d8614e..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationMessages.properties
+++ /dev/null
@@ -1,11 +0,0 @@
-###############################################################################
-# Copyright (c) 2000, 2007 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-###############################################################################
-JavaManipulationMessages_internalError=Internal Error
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationPlugin.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationPlugin.java
deleted file mode 100644
index 917d356c..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/manipulation/JavaManipulationPlugin.java
+++ /dev/null
@@ -1,86 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.internal.core.manipulation;
-
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.MultiStatus;
-import org.eclipse.core.runtime.Plugin;
-import org.eclipse.core.runtime.Status;
-
-import org.eclipse.wst.jsdt.core.manipulation.JavaScriptManipulation;
-
-import org.osgi.framework.BundleContext;
-
-/**
- * The main plug-in class to be used in the workbench.
- */
-public class JavaManipulationPlugin extends Plugin {
-
- //The shared instance.
- private static JavaManipulationPlugin fgDefault;
-
- /**
- * The constructor.
- */
- public JavaManipulationPlugin() {
- fgDefault = this;
- }
-
- /**
- * This method is called upon plug-in activation
- */
- public void start(BundleContext context) throws Exception {
- super.start(context);
- }
-
- /**
- * This method is called when the plug-in is stopped
- */
- public void stop(BundleContext context) throws Exception {
- super.stop(context);
- fgDefault = null;
- }
-
- /**
- * Returns the shared instance.
- *
- * @return the shared instance.
- */
- public static JavaManipulationPlugin getDefault() {
- return fgDefault;
- }
-
- public static String getPluginId() {
- return JavaScriptManipulation.ID_PLUGIN;
- }
-
- public static void log(IStatus status) {
- getDefault().getLog().log(status);
- }
-
- public static void logErrorMessage(String message) {
- log(new Status(IStatus.ERROR, getPluginId(), IStatusConstants.INTERNAL_ERROR, message, null));
- }
-
- public static void logErrorStatus(String message, IStatus status) {
- if (status == null) {
- logErrorMessage(message);
- return;
- }
- MultiStatus multi= new MultiStatus(getPluginId(), IStatusConstants.INTERNAL_ERROR, message, null);
- multi.add(status);
- log(multi);
- }
-
- public static void log(Throwable e) {
- log(new Status(IStatus.ERROR, getPluginId(), IStatusConstants.INTERNAL_ERROR, JavaManipulationMessages.JavaManipulationMessages_internalError, e));
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/refactoring/descriptors/DescriptorMessages.java b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/refactoring/descriptors/DescriptorMessages.java
deleted file mode 100644
index 3ecc8b2e..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/refactoring/descriptors/DescriptorMessages.java
+++ /dev/null
@@ -1,80 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.internal.core.refactoring.descriptors;
-
-import org.eclipse.osgi.util.NLS;
-
-public class DescriptorMessages extends NLS {
-
- private static final String BUNDLE_NAME= "org.eclipse.wst.jsdt.internal.core.refactoring.descriptors.DescriptorMessages"; //$NON-NLS-1$
-
- public static String JavaRefactoringDescriptor_no_description;
-
- public static String JavaRefactoringDescriptor_no_resulting_descriptor;
-
- public static String JavaRefactoringDescriptor_not_available;
-
- public static String MoveDescriptor_no_destination_set;
-
- public static String MoveDescriptor_no_elements_set;
-
- public static String MoveStaticMembersDescriptor_invalid_members;
-
- public static String MoveStaticMembersDescriptor_no_members;
-
- public static String MoveStaticMembersDescriptor_no_type;
-
- public static String RenameJavaElementDescriptor_accessor_constraint;
-
- public static String RenameJavaElementDescriptor_delegate_constraint;
-
- public static String RenameJavaElementDescriptor_deprecation_constraint;
-
- public static String RenameJavaElementDescriptor_hierarchical_constraint;
-
- public static String RenameJavaElementDescriptor_no_java_element;
-
- public static String RenameJavaElementDescriptor_patterns_constraint;
-
- public static String RenameJavaElementDescriptor_patterns_qualified_constraint;
-
- public static String RenameJavaElementDescriptor_project_constraint;
-
- public static String RenameJavaElementDescriptor_qualified_constraint;
-
- public static String RenameJavaElementDescriptor_reference_constraint;
-
- public static String RenameJavaElementDescriptor_similar_constraint;
-
- public static String RenameJavaElementDescriptor_textual_constraint;
-
- public static String RenameLocalVariableDescriptor_no_compilation_unit;
-
- public static String RenameLocalVariableDescriptor_no_selection;
-
- public static String RenameResourceDescriptor_no_new_name;
-
- public static String RenameResourceDescriptor_no_resource;
-
- public static String RenameResourceDescriptor_project_constraint;
-
- public static String UseSupertypeDescriptor_no_subtype;
-
- public static String UseSupertypeDescriptor_no_supertype;
-
- static {
- // initialize resource bundle
- NLS.initializeMessages(BUNDLE_NAME, DescriptorMessages.class);
- }
-
- private DescriptorMessages() {
- }
-} \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/refactoring/descriptors/DescriptorMessages.properties b/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/refactoring/descriptors/DescriptorMessages.properties
deleted file mode 100644
index 7fa60a91..00000000
--- a/bundles/org.eclipse.wst.jsdt.manipulation/src/org/eclipse/wst/jsdt/internal/core/refactoring/descriptors/DescriptorMessages.properties
+++ /dev/null
@@ -1,37 +0,0 @@
-###############################################################################
-# Copyright (c) 2007 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-###############################################################################
-JavaRefactoringDescriptor_not_available=N/A
-JavaRefactoringDescriptor_no_description=Description has not been set.
-JavaRefactoringDescriptor_no_resulting_descriptor=Refactoring contribution registered for id ''{0}'' returned null as result of createDescriptor(String, String, String, String, Map, int)
-UseSupertypeDescriptor_no_subtype=Subtype has not been set.
-UseSupertypeDescriptor_no_supertype=Supertype has not been set.
-RenameResourceDescriptor_no_resource=Resource has not been set.
-RenameResourceDescriptor_no_new_name=New name has not been set.
-RenameResourceDescriptor_project_constraint=Project must be null for resources of type 'IProject'.
-RenameJavaElementDescriptor_no_java_element=JavaScript element has not been set.
-RenameJavaElementDescriptor_reference_constraint=Reference updating is not available for package fragment roots.
-RenameJavaElementDescriptor_qualified_constraint=Qualified name updating is only available for packages and types.
-RenameJavaElementDescriptor_deprecation_constraint=Deprecation of delegates is only available for functions and vars.
-RenameJavaElementDescriptor_hierarchical_constraint=Hierarchical renaming is only applicable to packages.
-RenameJavaElementDescriptor_patterns_qualified_constraint=Qualified name updating enabled implies a non-empty patterns string.
-RenameLocalVariableDescriptor_no_compilation_unit=Compilation unit has not been set.
-RenameLocalVariableDescriptor_no_selection=Selection has not been set.
-RenameJavaElementDescriptor_textual_constraint=Textual occurrence updating is only available for packages, types and vars.
-RenameJavaElementDescriptor_project_constraint=Project must be null for JavaScript elements of type 'IJavaProject'.
-RenameJavaElementDescriptor_similar_constraint=Similar declaration updating is only available for types.
-RenameJavaElementDescriptor_delegate_constraint=Keeping delegates is only available for functions and vars.
-RenameJavaElementDescriptor_accessor_constraint=Renaming of accessor methods is only available for vars.
-RenameJavaElementDescriptor_patterns_constraint=Patterns must be a non-empty string.
-MoveStaticMembersDescriptor_no_type=Destination type has not been set.
-MoveDescriptor_no_destination_set=Destination has not been set.
-MoveStaticMembersDescriptor_no_members=Members have not been set.
-MoveStaticMembersDescriptor_invalid_members=Members array contains an invalid member
-MoveDescriptor_no_elements_set=Elements to be moved have not been set.
diff --git a/bundles/org.eclipse.wst.jsdt.ui/META-INF/MANIFEST.MF b/bundles/org.eclipse.wst.jsdt.ui/META-INF/MANIFEST.MF
index 1627edc4..04baace0 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.wst.jsdt.ui/META-INF/MANIFEST.MF
@@ -99,7 +99,7 @@ Export-Package: org.eclipse.wst.jsdt.internal.corext;x-friends:="org.eclipse.wst
org.eclipse.wst.jsdt.ui.text.java,
org.eclipse.wst.jsdt.ui.text.java.hover,
org.eclipse.wst.jsdt.ui.wizards
-Bundle-Version: 1.0.100.qualifier
+Bundle-Version: 1.0.12.qualifier
Bundle-Activator: org.eclipse.wst.jsdt.internal.ui.JavaScriptPlugin
Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
org.eclipse.ui.console;bundle-version="[3.3.0,4.0.0)",
diff --git a/bundles/org.eclipse.wst.jsdt.ui/plugin.properties b/bundles/org.eclipse.wst.jsdt.ui/plugin.properties
index 95076a75..8ce8eede 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/plugin.properties
+++ b/bundles/org.eclipse.wst.jsdt.ui/plugin.properties
@@ -481,7 +481,7 @@ HideEmptyInnerPackages.description= Hides empty folders which do not contain Jav
HideNonJavaElements.label= Non-JavaScript elements
HideNonJavaElements.description= Hides all non-JavaScript elements
-HideReferencedLibraries.label= Libraries from external
+HideReferencedLibraries.label= External JavaScript Libraries
HideReferencedLibraries.description= Hides external libraries i.e. those not contained inside the project itself
HideContainedLibraries.label=Libraries in project
@@ -514,7 +514,7 @@ HideAnnotation.description= Hides all annotations
HideClass.label= Classes
HideClass.description= Hides all classes
-HideNonSharedProjects.label= Non-shared projects
+HideNonSharedProjects.label= Non-shared JavaScript projects
HideNonSharedProjects.description= Hides all unshared projects
HideClosedProjects.label= Closed projects
@@ -529,7 +529,7 @@ HideStatics.description= Hides static vars and functions
HideNonPublic.label= Non-public members
HideNonPublic.description= Hides non-public members
-HideLocalTypes.label= Local types
+HideLocalTypes.label= Local JavaScript types
HideLocalTypes.description= Hides local types
HideSyntheticMembers.label= Synthetic members
diff --git a/bundles/org.eclipse.wst.jsdt.ui/plugin.xml b/bundles/org.eclipse.wst.jsdt.ui/plugin.xml
index c0a4b4b0..f8c12439 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/plugin.xml
+++ b/bundles/org.eclipse.wst.jsdt.ui/plugin.xml
@@ -219,7 +219,7 @@
icon="$nl$/icons/full/elcl16/wordassist_co.gif"/>
</extension>
- <!-- JavaScript completions -->
+ <!-- JavaScript completions -->
<!--
<extension
point="org.eclipse.wst.jsdt.ui.javaCompletionProposalComputer"
@@ -4696,6 +4696,7 @@
id="org.eclipse.wst.jsdt.ui.PackageExplorer.ImportDeclarationFilter">
</filter>
-->
+ <!--
<filter
targetId="org.eclipse.wst.jsdt.ui.PackageExplorer"
name="%HideSyntheticMembers.label"
@@ -4704,6 +4705,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.SyntheticMembersFilter"
id="org.eclipse.wst.jsdt.ui.PackageExplorer.SyntheticMembersFilter">
</filter>
+ -->
<filter
targetId="org.eclipse.wst.jsdt.ui.PackageExplorer"
name="%HideNonJavaProjects.label"
@@ -4744,6 +4746,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.StaticsFilter"
id="org.eclipse.wst.jsdt.ui.PackageExplorer.StaticsFilter">
</filter>
+ <!--
<filter
targetId="org.eclipse.wst.jsdt.ui.PackageExplorer"
name="%HideNonPublic.label"
@@ -4752,6 +4755,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.NonPublicFilter"
id="org.eclipse.wst.jsdt.ui.PackageExplorer.NonPublicFilter">
</filter>
+ -->
<filter
targetId="org.eclipse.wst.jsdt.ui.PackageExplorer"
name="%HideLocalTypes.label"
@@ -4769,6 +4773,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.NonPublicTypeFilter"
id="org.eclipse.wst.jsdt.ui.TypesView.NonPublicTypeFilter">
</filter>
+ <!--
<filter
targetId="org.eclipse.wst.jsdt.ui.TypesView"
name="%HideInterface.label"
@@ -4777,7 +4782,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.InterfaceFilter"
id="org.eclipse.wst.jsdt.ui.TypesView.InterfaceFilter">
</filter>
-<!--
+
<filter
targetId="org.eclipse.wst.jsdt.ui.TypesView"
name="%HideEnum.label"
@@ -4854,6 +4859,7 @@
id="org.eclipse.wst.jsdt.ui.ProjectsView.NonSharedProjectsFilter">
</filter>
<!-- Members view -->
+<!--
<filter
targetId="org.eclipse.wst.jsdt.ui.MembersView"
name="%HideImportDeclaration.label"
@@ -4870,6 +4876,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.SyntheticMembersFilter"
id="org.eclipse.wst.jsdt.ui.MembersView.SyntheticMembersFilter">
</filter>
+ -->
<!-- Outline Page -->
<!--
<filter
@@ -4891,6 +4898,7 @@
id="org.eclipse.wst.jsdt.ui.JavaOutlinePage.ImportDeclarationFilter">
</filter>
-->
+ <!--
<filter
targetId="org.eclipse.wst.jsdt.ui.JavaOutlinePage"
name="%HideSyntheticMembers.label"
@@ -4899,6 +4907,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.SyntheticMembersFilter"
id="org.eclipse.wst.jsdt.ui.JavaOutlinePage.SyntheticMembersFilter">
</filter>
+ -->
<!-- Quick Outline -->
<filter
targetId="org.eclipse.wst.jsdt.internal.ui.text.QuickOutline"
@@ -4932,6 +4941,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.StaticsFilter"
id="org.eclipse.wst.jsdt.internal.ui.text.QuickOutline.StaticsFilter">
</filter>
+ <!--
<filter
targetId="org.eclipse.wst.jsdt.internal.ui.text.QuickOutline"
name="%HideNonPublic.label"
@@ -4940,6 +4950,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.NonPublicFilter"
id="org.eclipse.wst.jsdt.internal.ui.text.QuickOutline.NonPublicFilter">
</filter>
+ -->
<filter
targetId="org.eclipse.wst.jsdt.internal.ui.text.QuickOutline"
name="%HideLocalTypes.label"
@@ -4948,6 +4959,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.LocalTypesFilter"
id="org.eclipse.wst.jsdt.internal.ui.text.QuickOutline.LocalTypesFilter">
</filter>
+ <!--
<filter
targetId="org.eclipse.wst.jsdt.internal.ui.text.QuickOutline"
name="%HideSyntheticMembers.label"
@@ -4956,6 +4968,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.SyntheticMembersFilter"
id="org.eclipse.wst.jsdt.internal.ui.text.QuickOutline.SyntheticMembersFilter">
</filter>
+ -->
<!-- Quick Hierarchy -->
<filter
targetId="org.eclipse.wst.jsdt.internal.ui.typehierarchy.QuickHierarchy"
@@ -4965,6 +4978,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.StaticsFilter"
id="org.eclipse.wst.jsdt.internal.ui.typehierarchy.QuickHierarchy.StaticsFilter">
</filter>
+ <!--
<filter
targetId="org.eclipse.wst.jsdt.internal.ui.typehierarchy.QuickHierarchy"
name="%HideNonPublic.label"
@@ -4973,6 +4987,7 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.NonPublicFilter"
id="org.eclipse.wst.jsdt.internal.ui.typehierarchy.QuickHierarchy.NonPublicFilter">
</filter>
+ -->
<filter
targetId="org.eclipse.wst.jsdt.internal.ui.typehierarchy.QuickHierarchy"
name="%HideLocalTypes.label"
@@ -5622,12 +5637,14 @@
name="%HideEnum.label"
description="%HideEnum.description"
id="org.eclipse.wst.jsdt.java.ui.filters.HideAnnotations"/>
--->
+-->
+<!--
<commonFilter
class="org.eclipse.wst.jsdt.internal.ui.filters.InterfaceFilter"
name="%HideInterface.label"
description="%HideInterface.description"
id="org.eclipse.wst.jsdt.java.ui.filters.HideInterface"/>
+-->
<commonFilter
class="org.eclipse.wst.jsdt.internal.ui.filters.FieldsFilter"
name="%HideFields.label"
@@ -5641,12 +5658,14 @@
description="%HideImportDeclaration.description"
id="org.eclipse.wst.jsdt.java.ui.filters.HideImportDeclaration"/>
-->
+ <!--
<commonFilter
activeByDefault="true"
class="org.eclipse.wst.jsdt.internal.ui.filters.InnerClassFilesFilter"
name="%HideInnerClassFiles.label"
description="%HideInnerClassFiles.description"
id="org.eclipse.wst.jsdt.java.ui.filters.HideInnerClassFiles"/>
+ -->
<commonFilter
class="org.eclipse.wst.jsdt.internal.ui.filters.JavaFileFilter"
name="%HideJavaFiles.label"
@@ -5666,12 +5685,14 @@
class="org.eclipse.wst.jsdt.internal.ui.filters.NonJavaProjectsFilter"
name="%HideNonJavaProjects.label"
description="%HideNonJavaProjects.description"
- id="org.eclipse.wst.jsdt.java.ui.filters.HideNonJavaProjects"/>
+ id="org.eclipse.wst.jsdt.java.ui.filters.HideNonJavaProjects"/>
+ <!--
<commonFilter
class="org.eclipse.wst.jsdt.internal.ui.filters.NonPublicFilter"
name="%HideNonPublic.label"
description="%HideNonPublic.description"
id="org.eclipse.wst.jsdt.java.ui.filters.HideNonPublic"/>
+ -->
<commonFilter
class="org.eclipse.wst.jsdt.internal.ui.filters.NonSharedProjectFilter"
name="%HideNonSharedProjects.label"
@@ -5695,12 +5716,14 @@
name="%HideStatics.label"
description="%HideStatics.description"
id="org.eclipse.wst.jsdt.java.ui.filters.HideStatics"/>
+ <!--
<commonFilter
activeByDefault="true"
class="org.eclipse.wst.jsdt.internal.ui.filters.SyntheticMembersFilter"
name="%HideSyntheticMembers.label"
description="%HideSyntheticMembers.description"
id="org.eclipse.wst.jsdt.java.ui.filters.HideSyntheticMembers"/>
+ -->
</extension>
<extension
point="org.eclipse.ui.navigator.linkHelper">
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/CleanUpRefactoring.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/CleanUpRefactoring.java
index 1edd6c33..9925b379 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/CleanUpRefactoring.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/CleanUpRefactoring.java
@@ -44,8 +44,8 @@ import org.eclipse.text.edits.TextEdit;
import org.eclipse.text.edits.TextEditGroup;
import org.eclipse.text.edits.TextEditVisitor;
import org.eclipse.text.edits.UndoEdit;
-import org.eclipse.wst.jsdt.core.IJavaScriptUnit;
import org.eclipse.wst.jsdt.core.IJavaScriptProject;
+import org.eclipse.wst.jsdt.core.IJavaScriptUnit;
import org.eclipse.wst.jsdt.core.IPackageFragment;
import org.eclipse.wst.jsdt.core.JavaScriptModelException;
import org.eclipse.wst.jsdt.core.WorkingCopyOwner;
@@ -63,7 +63,6 @@ import org.eclipse.wst.jsdt.internal.ui.JavaScriptPlugin;
import org.eclipse.wst.jsdt.internal.ui.fix.CodeFormatCleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.CommentFormatCleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.ControlStatementsCleanUp;
-import org.eclipse.wst.jsdt.internal.ui.fix.ConvertLoopCleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.ExpressionsCleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.ICleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.SortMembersCleanUp;
@@ -1031,7 +1030,7 @@ public class CleanUpRefactoring extends Refactoring implements IScheduledRefacto
return new ICleanUp[] {
// new CodeStyleCleanUp(),
new ControlStatementsCleanUp(),
- new ConvertLoopCleanUp(),
+// new ConvertLoopCleanUp(),
// new VariableDeclarationCleanUp(),
new ExpressionsCleanUp(),
new UnusedCodeCleanUp(),
@@ -1048,7 +1047,7 @@ public class CleanUpRefactoring extends Refactoring implements IScheduledRefacto
return new ICleanUp[] {
// new CodeStyleCleanUp(settings),
new ControlStatementsCleanUp(settings),
- new ConvertLoopCleanUp(settings),
+// new ConvertLoopCleanUp(settings),
// new VariableDeclarationCleanUp(settings),
new ExpressionsCleanUp(settings),
new UnusedCodeCleanUp(settings),
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/ConvertLoopFix.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/ConvertLoopFix.java
index db65ad0e..1bc5f472 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/ConvertLoopFix.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/fix/ConvertLoopFix.java
@@ -14,13 +14,12 @@
package org.eclipse.wst.jsdt.internal.corext.fix;
import java.util.ArrayList;
-import java.util.Collection;
import java.util.Hashtable;
import java.util.List;
import org.eclipse.core.runtime.IStatus;
-import org.eclipse.wst.jsdt.core.dom.JavaScriptUnit;
import org.eclipse.wst.jsdt.core.dom.ForStatement;
+import org.eclipse.wst.jsdt.core.dom.JavaScriptUnit;
import org.eclipse.wst.jsdt.internal.corext.dom.GenericVisitor;
import org.eclipse.wst.jsdt.internal.corext.util.JavaModelUtil;
@@ -45,53 +44,7 @@ public class ConvertLoopFix extends LinkedFix {
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.internal.corext.dom.GenericVisitor#visit(org.eclipse.wst.jsdt.core.dom.ForStatement)
*/
- public boolean visit(ForStatement node) {
- if (fFindForLoopsToConvert || fConvertIterableForLoops) {
- ForStatement current= node;
- ConvertLoopOperation operation= getConvertOperation(current);
- ConvertLoopOperation oldOperation= null;
- while (operation != null) {
- if (oldOperation == null) {
- fResult.add(operation);
- } else {
- oldOperation.setBodyConverter(operation);
- }
-
- if (current.getBody() instanceof ForStatement) {
- current= (ForStatement)current.getBody();
- oldOperation= operation;
- operation= getConvertOperation(current);
- } else {
- operation= null;
- }
- }
- current.getBody().accept(this);
- return false;
- }
-
- return super.visit(node);
- }
-
- private ConvertLoopOperation getConvertOperation(ForStatement node) {
-
- Collection usedNamesCollection= fUsedNames.values();
- String[] usedNames= (String[])usedNamesCollection.toArray(new String[usedNamesCollection.size()]);
- ConvertLoopOperation convertForLoopOperation= new ConvertForLoopOperation(node, usedNames, fMakeFinal);
- if (convertForLoopOperation.satisfiesPreconditions().isOK()) {
- if (fFindForLoopsToConvert) {
- fUsedNames.put(node, convertForLoopOperation.getIntroducedVariableName());
- return convertForLoopOperation;
- }
- } else if (fConvertIterableForLoops) {
- ConvertLoopOperation iterableConverter= new ConvertIterableLoopOperation(node, usedNames, fMakeFinal);
- if (iterableConverter.satisfiesPreconditions().isOK()) {
- fUsedNames.put(node, iterableConverter.getIntroducedVariableName());
- return iterableConverter;
- }
- }
-
- return null;
- }
+
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.internal.corext.dom.GenericVisitor#endVisit(org.eclipse.wst.jsdt.core.dom.ForStatement)
@@ -123,14 +76,7 @@ public class ConvertLoopFix extends LinkedFix {
return new ConvertLoopFix(FixMessages.ControlStatementsFix_change_name, compilationUnit, ops);
}
- public static IFix createConvertForLoopToEnhancedFix(JavaScriptUnit compilationUnit, ForStatement loop) {
- ConvertLoopOperation convertForLoopOperation= new ConvertForLoopOperation(loop);
- if (!convertForLoopOperation.satisfiesPreconditions().isOK())
- return null;
-
- return new ConvertLoopFix(FixMessages.Java50Fix_ConvertToEnhancedForLoop_description, compilationUnit, new ILinkedFixRewriteOperation[] {convertForLoopOperation});
- }
-
+
public static IFix createConvertIterableLoopToEnhancedFix(JavaScriptUnit compilationUnit, ForStatement loop) {
ConvertIterableLoopOperation loopConverter= new ConvertIterableLoopOperation(loop);
IStatus status= loopConverter.satisfiesPreconditions();
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/filters/NamePatternFilter.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/filters/NamePatternFilter.java
index d3883429..ae098e96 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/filters/NamePatternFilter.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/filters/NamePatternFilter.java
@@ -64,7 +64,7 @@ public class NamePatternFilter extends ViewerFilter {
matchName= ((IJavaScriptElement) element).getElementName();
} else if (element instanceof IResource) {
matchName= ((IResource) element).getName();
- } else if (element instanceof IStorage) {
+ }else if (element instanceof IStorage) {
matchName= ((IStorage) element).getName();
} else if (element instanceof IWorkingSet) {
matchName= ((IWorkingSet) element).getLabel();
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/navigator/JavaNavigatorContentProvider.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/navigator/JavaNavigatorContentProvider.java
index 4d3153bb..be1dbf8f 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/navigator/JavaNavigatorContentProvider.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/navigator/JavaNavigatorContentProvider.java
@@ -282,21 +282,21 @@ public class JavaNavigatorContentProvider extends
javaElements[i]= null;
}
}
- }
+ }
for (int i= 0; i < javaElements.length; i++) {
Object element= javaElements[i];
if (element instanceof IJavaScriptElement) {
IJavaScriptElement cElement= (IJavaScriptElement)element;
IResource resource= cElement.getResource();
if (resource != null) {
- proposedChildren.remove(resource);
- }
+ proposedChildren.remove(resource);
+ }
proposedChildren.add(element);
} else if (element != null) {
proposedChildren.add(element);
- }
- }
- }
+ }
+ }
+ }
@@ -331,5 +331,4 @@ public class JavaNavigatorContentProvider extends
}
super.postRefresh(toRefresh, updateLabels, runnables);
}
-
}
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/packageview/PackageExplorerContentProvider.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/packageview/PackageExplorerContentProvider.java
index 1a6eeac6..6c5e5c1a 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/packageview/PackageExplorerContentProvider.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/packageview/PackageExplorerContentProvider.java
@@ -16,7 +16,6 @@ import java.util.Collection;
import java.util.Iterator;
import java.util.List;
-
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
@@ -145,28 +144,28 @@ public class PackageExplorerContentProvider extends StandardJavaScriptElementCon
fPendingUpdates.addAll(runnables);
}
}
- postAsyncUpdate(ctrl.getDisplay());
- }
+ postAsyncUpdate(ctrl.getDisplay());
+ }
}
}
private void postAsyncUpdate(final Display display) {
if (fUpdateJob == null) {
fUpdateJob= new UIJob(display, PackagesMessages.PackageExplorerContentProvider_update_job_description) {
- public IStatus runInUIThread(IProgressMonitor monitor) {
- TreeViewer viewer= fViewer;
- if (viewer != null && viewer.isBusy()) {
- schedule(100); // reschedule when viewer is busy: bug 184991
- } else {
- runPendingUpdates();
+ public IStatus runInUIThread(IProgressMonitor monitor) {
+ TreeViewer viewer= fViewer;
+ if (viewer != null && viewer.isBusy()) {
+ schedule(100); // reschedule when viewer is busy: bug 184991
+ } else {
+ runPendingUpdates();
+ }
+ return Status.OK_STATUS;
}
- return Status.OK_STATUS;
- }
- };
+ };
fUpdateJob.setSystem(true);
}
fUpdateJob.schedule();
- }
+ }
/**
* Run all of the runnables that are the widget updates. Must be called in the display thread.
@@ -310,6 +309,8 @@ public class PackageExplorerContentProvider extends StandardJavaScriptElementCon
return NO_CHILDREN;
}
}
+
+
private Object[] getLibraryChildren(IPackageFragmentRoot container) {
@@ -1075,7 +1076,7 @@ private Object[] getLibraryChildren(IPackageFragmentRoot container) {
return true;
}
}
- }
+ }
for (int i= 0; i < resourceDeltas.length; i++) {
if (processResourceDelta(resourceDeltas[i], resource, runnables)) {
return false; // early return, element got refreshed
@@ -1145,8 +1146,8 @@ private Object[] getLibraryChildren(IPackageFragmentRoot container) {
}
}
}
- fViewer.add(parent, element);
- }
+ fViewer.add(parent, element);
+ }
});
}
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/preferences/cleanup/CodeStyleTabPage.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/preferences/cleanup/CodeStyleTabPage.java
index bb7e4b99..0816e01d 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/preferences/cleanup/CodeStyleTabPage.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/preferences/cleanup/CodeStyleTabPage.java
@@ -16,7 +16,6 @@ import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.wst.jsdt.internal.corext.fix.CleanUpConstants;
import org.eclipse.wst.jsdt.internal.ui.fix.ControlStatementsCleanUp;
-import org.eclipse.wst.jsdt.internal.ui.fix.ConvertLoopCleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.ExpressionsCleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.ICleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.VariableDeclarationCleanUp;
@@ -35,7 +34,6 @@ public final class CodeStyleTabPage extends CleanUpTabPage {
protected ICleanUp[] createPreviewCleanUps(Map values) {
return new ICleanUp[] {
new ControlStatementsCleanUp(values),
- new ConvertLoopCleanUp(values),
new ExpressionsCleanUp(values),
new VariableDeclarationCleanUp(values)
};
@@ -54,8 +52,6 @@ public final class CodeStyleTabPage extends CleanUpTabPage {
final RadioPreference useBlockNeverPref= createRadioPref(controlGroup, numColumns - 1, CleanUpMessages.CodeStyleTabPage_RadioName_NeverUseBlocks, CleanUpConstants.CONTROL_STATMENTS_USE_BLOCKS_NEVER, CleanUpModifyDialog.FALSE_TRUE);
registerSlavePreference(useBlockPref, new RadioPreference[] {useBlockAlwaysPref, useBlockJDTStylePref, useBlockNeverPref});
- CheckboxPreference convertLoop= createCheckboxPref(controlGroup, numColumns, CleanUpMessages.CodeStyleTabPage_CheckboxName_ConvertForLoopToEnhanced, CleanUpConstants.CONTROL_STATMENTS_CONVERT_FOR_LOOP_TO_ENHANCED, CleanUpModifyDialog.FALSE_TRUE);
- registerPreference(convertLoop);
Group expressionsGroup= createGroup(numColumns, composite, CleanUpMessages.CodeStyleTabPage_GroupName_Expressions);
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/correction/QuickAssistProcessor.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/correction/QuickAssistProcessor.java
index 60e87fb8..c2ab8d37 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/correction/QuickAssistProcessor.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/correction/QuickAssistProcessor.java
@@ -39,13 +39,14 @@ import org.eclipse.wst.jsdt.core.dom.CastExpression;
import org.eclipse.wst.jsdt.core.dom.CatchClause;
import org.eclipse.wst.jsdt.core.dom.ChildListPropertyDescriptor;
import org.eclipse.wst.jsdt.core.dom.ClassInstanceCreation;
-import org.eclipse.wst.jsdt.core.dom.JavaScriptUnit;
import org.eclipse.wst.jsdt.core.dom.ConditionalExpression;
import org.eclipse.wst.jsdt.core.dom.DoStatement;
import org.eclipse.wst.jsdt.core.dom.Expression;
import org.eclipse.wst.jsdt.core.dom.ExpressionStatement;
import org.eclipse.wst.jsdt.core.dom.ForInStatement;
import org.eclipse.wst.jsdt.core.dom.ForStatement;
+import org.eclipse.wst.jsdt.core.dom.FunctionDeclaration;
+import org.eclipse.wst.jsdt.core.dom.FunctionInvocation;
import org.eclipse.wst.jsdt.core.dom.IBinding;
import org.eclipse.wst.jsdt.core.dom.IFunctionBinding;
import org.eclipse.wst.jsdt.core.dom.ITypeBinding;
@@ -53,8 +54,7 @@ import org.eclipse.wst.jsdt.core.dom.IVariableBinding;
import org.eclipse.wst.jsdt.core.dom.IfStatement;
import org.eclipse.wst.jsdt.core.dom.InfixExpression;
import org.eclipse.wst.jsdt.core.dom.Initializer;
-import org.eclipse.wst.jsdt.core.dom.FunctionDeclaration;
-import org.eclipse.wst.jsdt.core.dom.FunctionInvocation;
+import org.eclipse.wst.jsdt.core.dom.JavaScriptUnit;
import org.eclipse.wst.jsdt.core.dom.Modifier;
import org.eclipse.wst.jsdt.core.dom.Name;
import org.eclipse.wst.jsdt.core.dom.ParenthesizedExpression;
@@ -95,8 +95,8 @@ import org.eclipse.wst.jsdt.internal.corext.refactoring.code.ExtractTempRefactor
import org.eclipse.wst.jsdt.internal.corext.refactoring.code.InlineTempRefactoring;
import org.eclipse.wst.jsdt.internal.corext.refactoring.code.PromoteTempToFieldRefactoring;
import org.eclipse.wst.jsdt.internal.corext.util.Messages;
-import org.eclipse.wst.jsdt.internal.ui.JavaScriptPlugin;
import org.eclipse.wst.jsdt.internal.ui.JavaPluginImages;
+import org.eclipse.wst.jsdt.internal.ui.JavaScriptPlugin;
import org.eclipse.wst.jsdt.internal.ui.fix.ControlStatementsCleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.ConvertLoopCleanUp;
import org.eclipse.wst.jsdt.internal.ui.fix.ICleanUp;
@@ -143,12 +143,10 @@ public class QuickAssistProcessor implements IQuickAssistProcessor {
|| getArrayInitializerToArrayCreation(context, coveringNode, null)
|| getCreateInSuperClassProposals(context, coveringNode, null)
|| getInvertEqualsProposal(context, coveringNode, null)
- || getConvertForLoopProposal(context, coveringNode, null)
|| getExtractLocalProposal(context, coveringNode, null)
|| getInlineLocalProposal(context, coveringNode, null)
|| getConvertLocalToFieldProposal(context, coveringNode, null)
|| getConvertAnonymousToNestedProposal(context, coveringNode, null)
- || getConvertIterableLoopProposal(context, coveringNode, null)
|| getRemoveBlockProposals(context, coveringNode, null)
|| getMakeVariableDeclarationFinalProposals(context, coveringNode, null);
}
@@ -181,8 +179,6 @@ public class QuickAssistProcessor implements IQuickAssistProcessor {
getInlineLocalProposal(context, coveringNode, resultingCollections);
getConvertLocalToFieldProposal(context, coveringNode, resultingCollections);
getConvertAnonymousToNestedProposal(context, coveringNode, resultingCollections);
- if (!getConvertForLoopProposal(context, coveringNode, resultingCollections))
- getConvertIterableLoopProposal(context, coveringNode, resultingCollections);
getRemoveBlockProposals(context, coveringNode, resultingCollections);
getMakeVariableDeclarationFinalProposals(context, coveringNode, resultingCollections);
}
@@ -1226,29 +1222,6 @@ public class QuickAssistProcessor implements IQuickAssistProcessor {
return true;
}
- private static boolean getConvertForLoopProposal(IInvocationContext context, ASTNode node, Collection resultingCollections) throws CoreException {
- ForStatement forStatement= getEnclosingForStatementHeader(node);
- if (forStatement == null)
- return false;
-
- if (resultingCollections == null)
- return true;
-
- IFix fix= ConvertLoopFix.createConvertForLoopToEnhancedFix(context.getASTRoot(), forStatement);
- if (fix == null)
- return false;
-
- Image image= JavaPluginImages.get(JavaPluginImages.IMG_CORRECTION_CHANGE);
- Map options= new HashMap();
- options.put(CleanUpConstants.CONTROL_STATMENTS_CONVERT_FOR_LOOP_TO_ENHANCED, CleanUpConstants.TRUE);
- ICleanUp cleanUp= new ConvertLoopCleanUp(options);
- FixCorrectionProposal proposal= new FixCorrectionProposal(fix, cleanUp, 1, image, context);
- proposal.setCommandId(CONVERT_FOR_LOOP_ID);
-
- resultingCollections.add(proposal);
- return true;
- }
-
private static boolean getConvertIterableLoopProposal(IInvocationContext context, ASTNode node, Collection resultingCollections) throws CoreException {
ForStatement forStatement= getEnclosingForStatementHeader(node);
if (forStatement == null)
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/OAADocReader.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/OAADocReader.java
new file mode 100644
index 00000000..53234ccf
--- /dev/null
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/OAADocReader.java
@@ -0,0 +1,105 @@
+package org.eclipse.wst.jsdt.internal.ui.text.javadoc;
+
+import java.io.IOException;
+import java.io.Reader;
+import java.io.StringReader;
+
+import org.eclipse.wst.jsdt.core.IMember;
+import org.eclipse.wst.jsdt.internal.core.MetadataFile;
+import org.eclipse.wst.jsdt.internal.oaametadata.DocumentedElement;
+import org.eclipse.wst.jsdt.internal.oaametadata.Exception;
+import org.eclipse.wst.jsdt.internal.oaametadata.Method;
+import org.eclipse.wst.jsdt.internal.oaametadata.Parameter;
+import org.eclipse.wst.jsdt.internal.oaametadata.VersionableElement;
+
+public class OAADocReader extends Reader {
+
+ StringReader sr;
+ StringBuffer buffer = new StringBuffer();
+
+ public OAADocReader(MetadataFile openable, IMember member) {
+
+ getDoc(openable, member);
+ }
+
+ private void getDoc(MetadataFile openable, IMember member) {
+ DocumentedElement documentation = openable.getDocumentation(member);
+ VersionableElement versionableElement = (documentation instanceof VersionableElement) ? (VersionableElement) documentation
+ : null;
+ Method method = (documentation instanceof Method) ? (Method) documentation
+ : null;
+ if (documentation != null) {
+ if (documentation.description != null) {
+ buffer.append("<p>");
+ buffer.append(documentation.description);
+ buffer.append("</p>");
+ }
+
+ buffer.append("<dl>"); //$NON-NLS-1$
+ if (method != null && method.parameters != null
+ && method.parameters.length > 0) {
+ printSectionHead(JavaDocMessages.JavaDoc2HTMLTextReader_parameters_section);
+ for (int i = 0; i < method.parameters.length; i++) {
+ Parameter parameter = method.parameters[i];
+ buffer.append("<dd>"); //$NON-NLS-1$
+ buffer.append("<b>").append(parameter.name).append("</b> ");
+ if (parameter.description!=null)
+ buffer.append(parameter.description); //$NON-NLS-1$
+ buffer.append("</dd>"); //$NON-NLS-1$
+ }
+ }
+
+ if (method.returns != null)
+ printSection(
+ JavaDocMessages.JavaDoc2HTMLTextReader_returns_section,
+ method.returns.dataType, method.returns.description);
+
+ if (method != null && method.exceptions != null
+ && method.exceptions.length > 0) {
+ printSectionHead(JavaDocMessages.JavaDoc2HTMLTextReader_throws_section);
+ for (int i = 0; i < method.exceptions.length; i++) {
+ Exception exception = method.exceptions[i];
+ buffer.append("<dd>"); //$NON-NLS-1$
+ buffer.append(exception.description); //$NON-NLS-1$
+ buffer.append("</dd>"); //$NON-NLS-1$
+ }
+ }
+
+ }
+ buffer.append("</dl>"); //$NON-NLS-1$
+
+ sr = new StringReader(buffer.toString());
+ }
+
+ public void close() throws IOException {
+ sr.close();
+ }
+
+ public int read(char[] cbuf, int off, int len) throws IOException {
+ return sr.read(cbuf, off, len);
+ }
+
+ private void printSectionHead(String tag) {
+ buffer.append("<dt>"); //$NON-NLS-1$
+ buffer.append(tag);
+ buffer.append("</dt>"); //$NON-NLS-1$
+ }
+
+ private void printSection(String tag, String nameIn, String descriptionIn) {
+ String name = (nameIn != null && nameIn.length() > 0) ? nameIn : null;
+ String description = (descriptionIn != null && descriptionIn.length() > 0) ? descriptionIn
+ : null;
+ if (name != null || description != null) {
+ buffer.append("<dt>"); //$NON-NLS-1$
+ buffer.append(tag);
+ buffer.append("<dd>"); //$NON-NLS-1$
+ if (name != null)
+ buffer.append("<b>").append(name).append("</b>");
+ if (description != null)
+ buffer.append(description);
+ buffer.append("</dd>"); //$NON-NLS-1$
+ buffer.append("</dt>"); //$NON-NLS-1$
+ }
+ }
+
+}
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/NewJSFileWizardPage.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/NewJSFileWizardPage.java
index 74d0d42f..9674366a 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/NewJSFileWizardPage.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/NewJSFileWizardPage.java
@@ -21,9 +21,9 @@ import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.content.IContentType;
+import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.osgi.util.NLS;
import org.eclipse.ui.dialogs.WizardNewFileCreationPage;
@@ -35,6 +35,7 @@ class NewJSFileWizardPage extends WizardNewFileCreationPage {
public NewJSFileWizardPage(String pageName, IStructuredSelection selection) {
super(pageName, selection);
+ super.setImageDescriptor(ImageDescriptor.createFromFile(this.getClass(),"full_rhino_transparent.gif"));
}
/**
@@ -42,17 +43,22 @@ class NewJSFileWizardPage extends WizardNewFileCreationPage {
* folder if the current selection is outside the web contents folder.
*/
protected void initialPopulateContainerNameField() {
+
super.initialPopulateContainerNameField();
IPath fullPath = getContainerFullPath();
IProject project = getProjectFromPath(fullPath);
IPath webContentPath = getWebContentPath(project);
-
- if (webContentPath != null && !webContentPath.isPrefixOf(fullPath)) {
+ IPath projectPath = project.getFullPath();
+ if(fullPath==null || projectPath.equals(fullPath))
setContainerFullPath(webContentPath);
- }else{
- setContainerFullPath(new Path(""));
- }
+ else
+ setContainerFullPath(fullPath);
+ //if (webContentPath != null && !webContentPath.isPrefixOf(fullPath)) {
+ //setContainerFullPath(webContentPath);
+ // }else{
+ //setContainerFullPath(new Path(""));
+ // }
}
@@ -246,4 +252,6 @@ path.append("/"); //$NON-NLS-1$
return path;
}
+
+
}
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java
index a3010b17..94be95c6 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java
@@ -429,7 +429,7 @@ public class BuildPathsBlock {
}
public void initializeTimeStamps() {
- IFile file= fCurrJProject.getJSDTScopeFile(); //$NON-NLS-1$
+ IFile file= fCurrJProject.getJSDTScopeFile(true); //$NON-NLS-1$
fFileTimeStamp= file.getModificationStamp();
fUserSettingsTimeStamp= getEncodedSettings();
}
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/full_rhino_transparent.gif b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/full_rhino_transparent.gif
new file mode 100644
index 00000000..9d57badf
--- /dev/null
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/wizards/full_rhino_transparent.gif
Binary files differ
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/JSdocContentAccess.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/JSdocContentAccess.java
index 2689502d..9661d602 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/JSdocContentAccess.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/JSdocContentAccess.java
@@ -25,14 +25,17 @@ import org.eclipse.wst.jsdt.core.IBuffer;
import org.eclipse.wst.jsdt.core.IJavaScriptElement;
import org.eclipse.wst.jsdt.core.IMember;
import org.eclipse.wst.jsdt.core.IFunction;
+import org.eclipse.wst.jsdt.core.IOpenable;
import org.eclipse.wst.jsdt.core.ISourceRange;
import org.eclipse.wst.jsdt.core.IType;
import org.eclipse.wst.jsdt.core.ITypeHierarchy;
import org.eclipse.wst.jsdt.core.JavaScriptModelException;
+import org.eclipse.wst.jsdt.internal.core.MetadataFile;
import org.eclipse.wst.jsdt.internal.corext.javadoc.JavaDocCommentReader;
import org.eclipse.wst.jsdt.internal.corext.util.MethodOverrideTester;
import org.eclipse.wst.jsdt.internal.ui.JavaScriptPlugin;
import org.eclipse.wst.jsdt.internal.ui.text.javadoc.JavaDoc2HTMLTextReader;
+import org.eclipse.wst.jsdt.internal.ui.text.javadoc.OAADocReader;
/**
* Helper needed to get the content of a Javadoc comment.
@@ -77,7 +80,13 @@ public class JSdocContentAccess {
if (docReader!=null)
return docReader.getContentReader(member, allowInherited);
- IBuffer buf= member.getOpenable().getBuffer();
+ IOpenable openable = member.getOpenable();
+ if (openable instanceof MetadataFile)
+ {
+ return new OAADocReader((MetadataFile)openable,member);
+ }
+
+ IBuffer buf= openable.getBuffer();
if (buf == null) {
return null; // no source attachment found
}
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/project/JsNature.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/project/JsNature.java
index e4fa7dd5..8aff13ea 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/project/JsNature.java
+++ b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/ui/project/JsNature.java
@@ -92,7 +92,7 @@ public class JsNature implements IProjectNature {
int k = 0;
head: for (int i = 0; i < prevNatures.length; i++) {
for (int j = 0; j < JsNature.NATURE_IDS.length; j++) {
- if (prevNatures[i] == JsNature.NATURE_IDS[j]) {
+ if (prevNatures[i].equals(JsNature.NATURE_IDS[j])) {
continue head;
}
}
diff --git a/docs/org.eclipse.wst.jsdt.doc/.project b/docs/org.eclipse.wst.jsdt.doc/.project
deleted file mode 100644
index 254e0a99..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/.project
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.wst.jsdt.doc</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.pde.ManifestBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.SchemaBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.PluginNature</nature>
- </natures>
-</projectDescription>
diff --git a/docs/org.eclipse.wst.jsdt.doc/.settings/org.eclipse.core.resources.prefs b/docs/org.eclipse.wst.jsdt.doc/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index afa5c913..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,3 +0,0 @@
-#Tue Apr 04 03:36:32 EDT 2006
-eclipse.preferences.version=1
-encoding/<project>=ISO-8859-1
diff --git a/docs/org.eclipse.wst.jsdt.doc/META-INF/MANIFEST.MF b/docs/org.eclipse.wst.jsdt.doc/META-INF/MANIFEST.MF
deleted file mode 100644
index 5818593a..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,8 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %Bundle-Name
-Bundle-SymbolicName: org.eclipse.wst.jsdt.doc; singleton:=true
-Bundle-Version: 1.0.1.qualifier
-Bundle-Vendor: %Bundle-Vendor
-Bundle-Localization: plugin
-Require-Bundle: org.eclipse.help;bundle-version="[3.2.0,4.0.0)"
diff --git a/docs/org.eclipse.wst.jsdt.doc/about.html b/docs/org.eclipse.wst.jsdt.doc/about.html
deleted file mode 100644
index 46023304..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/about.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
-<title>About</title>
-</head>
-<body lang="EN-US">
-<h2>About This Content</h2>
-
-<p>June 2, 2006</p>
-<h3>License</h3>
-
-<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;). Unless otherwise
-indicated below, the Content is provided to you under the terms and conditions of the
-Eclipse Public License Version 1.0 (&quot;EPL&quot;). A copy of the EPL is available
-at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
-For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
-
-<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
-being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
-apply to your use of any object code in the Content. Check the Redistributor's license that was
-provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
-indicated below, the terms and conditions of the EPL still apply to any source code in the Content
-and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
-
-</body>
-</html> \ No newline at end of file
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/atf.html b/docs/org.eclipse.wst.jsdt.doc/advanced/atf.html
deleted file mode 100644
index 8213ad8b..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/atf.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-<title>ATF Support</title>
-</head>
-<body>
-<h1>Javascript Development Toolkit (JSDT)</h1>
-<h3 class="NavListTitle">ATF Support</h3>
-<table><tr><td>&nbsp;</td><td>
-<br>
-The JSDT does not require any addition configuration to work with ATF projects. Please consult the ATF documentation for details on using the features provided by ATF.
-</td></tr></table>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/customlib.html b/docs/org.eclipse.wst.jsdt.doc/advanced/customlib.html
deleted file mode 100644
index f8a24874..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/customlib.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>custom lib</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Javascript Development Toolkit (JSDT)</h1>
-<h3 class="NavListTitle">Creating your own JSDT Libraries</h3>
-<table><tr><td>&nbsp;</td><td>
-<br>
-Documentation in progress...
-</td></tr></table>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global.html b/docs/org.eclipse.wst.jsdt.doc/advanced/global.html
deleted file mode 100644
index 762e95e4..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-<title>Web Support</title>
-</head>
-<body>
-<h1>Javascript Development Toolkit (JSDT)</h1>
-<h3 class="NavListTitle">Web Support</h3>
-<table><tr><td>&nbsp;</td><td>
-In progress...<br><br>
-
-
-
-<br><br>
-Javascript support in HTML or JSP does not require any aditional configuration. Just create a Static Web or Dynamic Web Project, create your HTML or JSP pages, and begin editing.
-</td></tr></table>
-
-<br>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/add.html b/docs/org.eclipse.wst.jsdt.doc/advanced/global/add.html
deleted file mode 100644
index 77ef4213..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/add.html
+++ /dev/null
@@ -1,92 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-<title>Adding a library to the global scope</title>
-</head>
-<body>
-<h1>Javascript Development Toolkit (JSDT)</h1>
-<h3 class="NavListTitle">Adding a library to the Global Scope</h3>
-<table>
- <tr>
- <td>&nbsp;</td>
- <td><!-- Start of sub section --> To add a JavaScript Library to a project follow these instructions: <br>
- <br>
-
-
- <table>
- <tr>
- <td colspan="2">
- <b>1.</b> Right-click on the project and select <b><i>Properties</i></b>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br><img src="./img/add/1.jpg"></td>
- </tr>
-
- <tr>
- <td colspan="2">
- <br><b>2.</b> Expand the <b><i>JavaScript</i></b> properties page in the left navigation bar and select the <b><i>JavaScript Libraries page</i></b>. Then click the <b><i>Add Runtime Library</i></b> to bring up the Libraries Selection dialog.
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br><img src="./img/add/2.jpg"></td>
- </tr>
-
- <tr>
- <td colspan="2">
- <br><b>3.</b> In the <b><i>Add Library</i></b> dialog select an available library and click <b><i>Next</i></b>. <!-- <br>(The other fields are optional for more advanced project configurations.)-->
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br><img src="./img/add/3.jpg"></td>
- </tr>
-
- <tr>
- <td colspan="2">
- <br><b>4.</b> Some libraries may have additional configuration pages. Fill them out as needed. Complete the library specific configuration by clicking <b><i>Finish</i></b> on the last page. <!-- <br>(The other fields are optional for more advanced project configurations.)-->
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br><img src="./img/add/4.jpg"></td>
- </tr>
-
- <tr>
- <td colspan="2">
- <br><b>5.</b> Finally, click <b><i>OK</i></b> to close the <b><i>JavaScript Libraries</i></b> page. <!-- <br>(The other fields are optional for more advanced project configurations.)-->
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br><img src="./img/add/5.jpg"></td>
- </tr>
-
- </table>
-
-
-
-
-
-
-
-
- <!-- End sub section -->
- </td>
- </tr>
-</table>
-
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/1.jpg b/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/1.jpg
deleted file mode 100644
index 054f50cf..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/1.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/2.jpg b/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/2.jpg
deleted file mode 100644
index 284f93df..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/2.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/3.jpg b/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/3.jpg
deleted file mode 100644
index b729bfb2..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/3.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/4.jpg b/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/4.jpg
deleted file mode 100644
index 001dd95b..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/4.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/5.jpg b/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/5.jpg
deleted file mode 100644
index a30d7a6a..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/5.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/r3.jpg b/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/r3.jpg
deleted file mode 100644
index 13202667..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/add/r3.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/s1.jpg b/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/s1.jpg
deleted file mode 100644
index 29dd784b..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/img/s1.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/remove.html b/docs/org.eclipse.wst.jsdt.doc/advanced/global/remove.html
deleted file mode 100644
index b7e5dac6..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/remove.html
+++ /dev/null
@@ -1,71 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-<title>Removing a library from the Global Scope</title>
-</head>
-<body>
-<h1>Javascript Development Toolkit (JSDT)</h1>
-<h3 class="NavListTitle">Removing a library from the Global Scope</h3>
-<table>
- <tr>
- <td>&nbsp;</td>
- <td><!-- Start of sub section --> To remove a JavaScript Library from a project follow these instructions: <br>
- <br>
-
-
- <table>
- <tr>
- <td colspan="2">
- <b>1.</b> Right-click on the project and select <b><i>Properties</i></b>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br><img src="./img/add/1.jpg"></td>
- </tr>
-
- <tr>
- <td colspan="2">
- <br><b>2.</b> Select the <b><i>JavaScript Include Path</i></b> properties page in the left navigation bar. Highlight the library you wish to remove and click <b><i>Remove</i></b>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br><img src="./img/add/5.jpg"></td>
- </tr>
-
- <tr>
- <td colspan="2">
- <br><b>3.</b> Finally, click <b><i>OK</i></b> to close the <b><i>JavaScript Include Path</i></b> page.
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br><img src="./img/add/2.jpg"></td>
- </tr>
-
- </table>
-
-
-
-
-
-
-
-
- <!-- End sub section -->
- </td>
- </tr>
-</table>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/global/source.html b/docs/org.eclipse.wst.jsdt.doc/advanced/global/source.html
deleted file mode 100644
index efbd5da4..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/global/source.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>Source Folders</title>
-</head>
-<body>
-<h1>Javascript Development Toolkit (JSDT)</h1>
-<h3 class="NavListTitle">Source Folders</h3>
-<table>
- <tr>
- <td>&nbsp;</td>
- <td><!-- Start of sub section --> In order to limit the source files in a JavaScript project's Global Scope the JSDT supports specifying project source folders. <br>
- <br>
- JavaScript source files (and sub folders) within a source folder is added to a projects Global Scope. By default the root folder of a JavaScript project is a source folder. So for most instances no source folder configuration is necisary.<br><br>
- For HTML projects there are no source folder by default. HTML files have their own Global Scope that's a combination of libraries from the project and any source files included through HTML using <b>&lt;script src='...'&gt;</b> tag <sup>1</sup>.
- <br><br>
- Source folders are modified in the <b>JavaScript Libraries</b> properties page on the Source Folder tab. (see <b><small><a href="#figure1">Figure 1</a></small></b>).<br><br>
- <center><img src="./img/s1.jpg"><br><small><b><a name="figure1">Figure 1.</a> JavaScript Source Configuration</b></small></center>
- <br>
-
- <br><br>
- <small><a name="note1">1.</a> You may still manually specify a source folder in the <b>JavaScript Include Path</b> properties page to exist in each HTML file's Global Scope.</small>
- <!-- End sub section -->
- </td>
- </tr>
-</table>
-<br>
-<p class="runningfooter">(C) Copyright IBM Corporation 2005. All
-Rights Reserved.<br>
-IBM is a registered trademark of IBM. All other trademarks are the
-property of their respective owners.</p>
-<br>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/advanced/index.html b/docs/org.eclipse.wst.jsdt.doc/advanced/index.html
deleted file mode 100644
index 38714a5b..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/advanced/index.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>Javascript Development Toolkit - Advanced</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Javascript Development Toolkit (JSDT)</h1>
-<h3 class="NavListTitle">Advanced Javascript Development</h3>
-<ul class="NavList">
-<li><a href="../../../nav/9_2_0">Managing the Global Scope</a></li>
-<!-- <li><a href="./atf.html">AJAX, advanced HTML and Debuging Support Through ATF</a></li> -->
-<li><a href="./customlib.html">Defining Custom Libraries</a></li>
-
-</ul>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/apiPackages.txt b/docs/org.eclipse.wst.jsdt.doc/apiPackages.txt
deleted file mode 100644
index a96cd98a..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/apiPackages.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-org.eclipse.wst.jsdt.core,
-org.eclipse.wst.jsdt.core.ast,
-org.eclipse.wst.jsdt.core.compiler,
-org.eclipse.wst.jsdt.core.compiler.libraries,
-org.eclipse.wst.jsdt.core.dom,
-org.eclipse.wst.jsdt.core.dom.rewrite,
-org.eclipse.wst.jsdt.core.eval,
-org.eclipse.wst.jsdt.core.formatter,
-org.eclipse.wst.jsdt.core.infer,
-org.eclipse.wst.jsdt.core.search,
-org.eclipse.wst.jsdt.core.util,
-org.eclipse.wst.jsdt.internal.core.index,
-org.eclipse.wst.jsdt.core.manipulation,
-org.eclipse.wst.jsdt.core.refactoring,
-org.eclipse.wst.jsdt.core.refactoring.descriptors,
-org.eclipse.wst.jsdt.libraries,
-org.eclipse.wst.jsdt.ui,
-org.eclipse.wst.jsdt.ui.project,
-org.eclipse.wst.jsdt.ui.refactoring,
-org.eclipse.wst.jsdt.ui.search,
-org.eclipse.wst.jsdt.ui.text,
-org.eclipse.wst.jsdt.ui.text.folding,
-org.eclipse.wst.jsdt.ui.text.java,
-org.eclipse.wst.jsdt.ui.text.java.hover,
-org.eclipse.wst.jsdt.ui.wizards,
-org.eclipse.wst.jsdt.web.core.javascript,
-org.eclipse.wst.jsdt.web.core.javascript.search,
-org.eclipse.wst.jsdt.web.core.text,
-org.eclipse.wst.jsdt.web.ui,
-org.eclipse.wst.jsdt.web.ui.views.contentoutline,
diff --git a/docs/org.eclipse.wst.jsdt.doc/atfdocs.css b/docs/org.eclipse.wst.jsdt.doc/atfdocs.css
deleted file mode 100644
index 8d1c8b69..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/atfdocs.css
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/docs/org.eclipse.wst.jsdt.doc/book.css b/docs/org.eclipse.wst.jsdt.doc/book.css
deleted file mode 100644
index 84d8880f..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/book.css
+++ /dev/null
@@ -1 +0,0 @@
-@import "../PRODUCT_PLUGIN/book.css";
diff --git a/docs/org.eclipse.wst.jsdt.doc/build.properties b/docs/org.eclipse.wst.jsdt.doc/build.properties
deleted file mode 100644
index 0535f89e..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/build.properties
+++ /dev/null
@@ -1,20 +0,0 @@
-bin.includes = META-INF/,\
- advanced/,\
- jsdtdocs.css,\
- book.css,\
- contributing/,\
- development/,\
- features/,\
- framework/,\
- index.html,\
- toc.xml,\
- legal/,\
- plugin.xml,\
- schema.css,\
- started/,\
- plugin.properties,\
- about.html,\
- html/,\
- javadoctoc.xml,\
- tocreference.xml
-generateSourceBundle=false
diff --git a/docs/org.eclipse.wst.jsdt.doc/buildExtDocs.properties b/docs/org.eclipse.wst.jsdt.doc/buildExtDocs.properties
deleted file mode 100644
index 333d5e6d..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/buildExtDocs.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-###############################################################################
-# Copyright (c) 2001, 2008 Oracle Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# Oracle Corporation - initial API and implementation
-###############################################################################
-################################################################
-# Information for extension point overview document
-################################################################
-# Overview document title
-
-title = JavaServer Faces Extension Points
-header = JSF Extension Points
-# Introduction paragraph
-overview = The following extension points can be used to extend the capabilities of the JSF infrastructure:
-# A list of the extension points that should be included in the
-# extension point documentation.
-
-listed-ext-points=org.eclipse.jst.jsf.common.contextSymbolFactory,\
- org.eclipse.jst.jsf.common.domainLoadingStrategies,\
- org.eclipse.jst.jsf.common.domainSourceModelTypeTranslators,\
- org.eclipse.jst.jsf.common.domainSourceModelTypes,\
- org.eclipse.jst.jsf.common.standardMetaDataFiles,\
- org.eclipse.jst.jsf.common.symbolSourceProvider,\
- org.eclipse.jst.jsf.core.AttributeValueRuntimeTypes,\
- org.eclipse.jst.jsf.core.MetaDataEnabledFeatures,\
- org.eclipse.jst.jsf.core.externalcontext,\
- org.eclipse.jst.jsf.core.jsfLibraries,\
- org.eclipse.jst.jsf.core.methodresolver,\
- org.eclipse.jst.jsf.core.pluginProvidedJsfLibraries,\
- org.eclipse.jst.jsf.core.propertyresolver,\
- org.eclipse.jst.jsf.core.variableresolver,\
- org.eclipse.jst.pagedesigner.pageDesignerExtension,\
- org.eclipse.jst.pagedesigner.popupMenuContributor,\
- org.eclipse.jst.pagedesigner.propertyContributor \ No newline at end of file
diff --git a/docs/org.eclipse.wst.jsdt.doc/buildExtDocs.xml b/docs/org.eclipse.wst.jsdt.doc/buildExtDocs.xml
deleted file mode 100644
index a9312ba5..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/buildExtDocs.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="Build Extension Point Documentation" default="createExtDocs" basedir=".">
-
- <property file="buildExtDocs.properties"/>
- <property name="outputDir" value="${basedir}${file.separator}html${file.separator}extpts_reference"/>
- <property name="jsfOutputDir" value="${outputDir}${file.separator}jsf${file.separator}"/>
-
- <!-- <taskdef name="pde.convertSchemaToHTML" classname="org.eclipse.pde.internal.core.ant.ConvertSchemaToHTML"/> -->
-
- <target name="createExtDocs" depends="buildExtDocs, createDocListings"/>
-
- <target name="buildExtDocs" depends="buildJSFExtDocs"/>
-
- <target name="buildJSFExtDocs">
- <!-- cleanup old -->
- <delete>
- <fileset dir="${jsfOutputDir}" casesensitive="yes" id="ext-docs-list-ent">
- <include name="*.html"/>
- </fileset>
- </delete>
-
- <!-- generate new html from ext-pt schemas -->
- <pde.convertSchemaToHTML manifest="../org.eclipse.jst.jsf.common/plugin.xml" destination="${jsfOutputDir}" />
- <pde.convertSchemaToHTML manifest="../org.eclipse.jst.jsf.core/plugin.xml" destination="${jsfOutputDir}" />
- <pde.convertSchemaToHTML manifest="../org.eclipse.jst.pagedesigner/plugin.xml" destination="${jsfOutputDir}" />
-
- <!-- Get the list of extension doc files. -->
- <fileset dir="${jsfOutputDir}" casesensitive="yes" id="ext-docs-list-ent">
- <include name="*.html"/>
- </fileset>
-
- <!-- Convert the list to an XML representation. -->
- <pathconvert property="ext-doc-ent" refid="ext-docs-list-ent" pathsep="&lt;/file&gt;/n/n&lt;file&gt;">
- <map from="${jsfOutputDir}" to=""/>
- </pathconvert>
- <echo file="jsfextdocs.xml">&lt;files component="jsf"&gt;&lt;file&gt;${ext-doc-ent}&lt;/file&gt;&lt;/files&gt;</echo>
-
- </target>
-
- <target name="createDocListings">
- <delete file="${outputDir}${file.separator}index.html"/>
- <!-- Create the overview document. -->
- <xslt basedir="${basedir}" in="extDocListings.xml" out="${outputDir}${file.separator}index.html" style="extDocOverview.xsl">
- <param name="title" expression="${title}"/>
- <param name="header" expression="${header}"/>
- <param name="overview" expression="${overview}"/>
- <param name="listed-ext-points" expression="${listed-ext-points}"/>
- </xslt>
-
- <!-- Create the extention point toc. -->
- <xslt basedir="${basedir}" in="extDocListings.xml" out="topics_ExtPoint_Reference.xml" style="extDocToc.xsl">
- <param name="listed-ext-points" expression="${listed-ext-points}"/>
- <outputproperty name="method" value="xml"/>
- <outputproperty name="indent" value="yes"/>
- </xslt>
-
- </target>
-</project> \ No newline at end of file
diff --git a/docs/org.eclipse.wst.jsdt.doc/contributing/framework.html b/docs/org.eclipse.wst.jsdt.doc/contributing/framework.html
deleted file mode 100644
index 023843bd..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/contributing/framework.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>JSDT Framework Contributions</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Contributing to the Framework</h1>
-<table><tr><td>&nbsp;</td><td>
-In progress...<br><br>
-To contribute to the core JSDT framework you will need to apply for and aquire Eclipse commiter status.
-(see <a href="http://www.eclipse.org" TARGET="_blank">www.eclipse.org</a>). Once this is complete, send an email to one of the contacts listed in the <a href="../legal/index.html">Additional Information page</a>
-</td></tr></table>
-
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/contributing/index.html b/docs/org.eclipse.wst.jsdt.doc/contributing/index.html
deleted file mode 100644
index 1ade6121..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/contributing/index.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml">
-
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>Contributing to the JSDT Framework or Libraries</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-<link rel="stylesheet" href="../content/PLUGINS_ROOT/org.eclipse.help.webapp/advanced/breadcrumbs.css" charset="ISO-8859-1" type="text/css">
-<script language="Javascript" src="../content/PLUGINS_ROOT/org.eclipse.help/livehelp.js"> </script>
-</head>
-<body>
-<div class="help_breadcrumbs"><a href="../topic/org.eclipse.wst.jsdt.doc/index.html">Javascript Development Toolkit User Guide</a> > </div>
-
-<h1 class="NavTitle">Contributing to the JSDT Framework or Libraries</h1>
-<h3 class="NavListTitle">Contents</h3>
-<ul class="NavList">
-<li><a href="./framework.html">Contributing to Framework</a></li>
-<li><a href="./library.html">Contributing to Libraries</a></li>
-</ul>
-</body>
-</html> \ No newline at end of file
diff --git a/docs/org.eclipse.wst.jsdt.doc/contributing/library.html b/docs/org.eclipse.wst.jsdt.doc/contributing/library.html
deleted file mode 100644
index 022bafd2..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/contributing/library.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>JSDT Library Contributions</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Contributing to Standard Libraries</h1>
-<table><tr><td>&nbsp;</td><td>
-In progress...<br><br>
-Advanced features of the JSDT are highly dependent on the accuracy of the libraries. The good news is that
-these libraries are nothing but Javascript. All of the Classes, inheritence and objects are stubed-out in the
-standardized Javascript prototype structure. The Javascript Inference Engine uses JsDoc supplied in the
-libraries to determine return types, and class hierarchy.
-<br><br>
-So how can you help? Well if you find an error in the library objects/JsDoc fix it! For now you
-will have to open a bug<b><small>**</small></b> but we hope to make the libraries editable via a wiki in the near future.
-<br><br>
-When opening a bug, please be sure your changes are as accurate as possible. This includes the prototype
-structure as well as any JsDoc to acompany it.
-<br><br>
-To locate most installed core libraries, check in your Eclipse workspace
-under <br><i>/[workspaceroot]/.metadata/.plugins/org.eclipse.wst.jsdt.core.libraries/</i>
-<br><br>
-Please include the line number for your library change/suggestion as well as the before and after copy of
-your change.
-<br><br>
-<b><small>**</small></b><small>To open a bug, naviage to the Eclipse homepage at <a href="http://www.eclipse.org" TARGET="_blank">www.eclipse.org</a>, and click on the bugs link.
-There should be documentation on obtaining a Bugzilla account there. You must open the bug under Web Tools project wst.jsdt component.</small>
-</td></tr></table>
-<br>
-
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/development/archOverview.html b/docs/org.eclipse.wst.jsdt.doc/development/archOverview.html
deleted file mode 100644
index 7600f215..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/development/archOverview.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1"
- TYPE="text/css">
-<link rel="stylesheet" type="text/css"
- href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css" >
-<title>Component Design and Architecture Overview</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Component Design and Architecture Overview</h1>
-<h3 class="NavListTitle">Contents</h3>
-<table><tr><td>&nbsp;</td><td>
-In progress...<br><br>
-JSDT is a re-worked version of the Java Development Toolkit for Eclipse designed to work with Javascript.
-The design and architectural concepts of the JSDT are the same or similar to those in the JDT.
-</td></tr></table>
-
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/development/extension-points/index.html b/docs/org.eclipse.wst.jsdt.doc/development/extension-points/index.html
deleted file mode 100644
index 33be23c2..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/development/extension-points/index.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>JSDT Extension Points</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Extension Points</h1>
-<br>
-In progress.......
-<br><br>
-<table><tr><td>&nbsp;</td><td>
-<ul>
-<li>org.eclipse.wst.jsdt.core.JsGlobalScopeVariableInitializer</li>
-<li>org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer</li>
-<li>org.eclipse.wst.jsdt.core.codeFormater</li>
-<li>org.eclipse.wst.jsdt.core.validationParticipant</li>
-<li>org.eclipse.wst.jsdt.ui.javaElementFilter</li>
-<li>org.eclipse.wst.jsdt.ui.javaEditorTextHover</li>
-<li>org.eclipse.wst.jsdt.ui.javaDocCompletionProcessor</li>
-<li>org.eclipse.wst.jsdt.ui.quickFixProcessors</li>
-<li>org.eclipse.wst.jsdt.ui.quickAssistProcessors</li>
-<li>org.eclipse.wst.jsdt.ui.JsGlobalScopeContainerPage</li>
-<li>org.eclipse.wst.jsdt.ui.foldingStructureProviders</li>
-<li>org.eclipse.wst.jsdt.ui.queryParticipants</li>
-<li>org.eclipse.wst.jsdt.ui.javaCompletionProposalComputer</li>
-<li>org.eclipse.wst.jsdt.ui.javaCompletionProposalSorters</li>
-<li>org.eclipse.wst.jsdt.ui.classpathAttributeConfiguration</li>
-<li>org.eclipse.wst.jsdt.ui.javaCompletionProposalComputer</li>
-</ul>
-</td></tr></table>
-
-
-
-
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/development/index.html b/docs/org.eclipse.wst.jsdt.doc/development/index.html
deleted file mode 100644
index 4875e50a..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/development/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>JSDT Framework Developers Guide</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-<link rel="stylesheet" href="../content/PLUGINS_ROOT/org.eclipse.help.webapp/advanced/breadcrumbs.css" charset="ISO-8859-1" type="text/css">
-<script language="Javascript" src="../content/PLUGINS_ROOT/org.eclipse.help/livehelp.js"> </script>
-</head>
-<body>
-<div class="help_breadcrumbs"><a href="../topic/org.eclipse.wst.jsdt.doc/index.html">Javascript Development Toolkit User Guide</a> > </div>
-
-<h1 class="NavTitle">JSDT Framework Developers Guide</h1>
-<h3 class="NavListTitle">Contents</h3>
-<ul class="NavList">
-<li><a href="./extension-points/index.html">Extension Points Reference</a></li>
-<li><a href="./archOverview.html">Component Design and Architecture Overview</a></li>
-<li><a href="./limitations.html">JSDT Limitations and Work in Progress</a></li>
-</ul>
-</body>
-</html> \ No newline at end of file
diff --git a/docs/org.eclipse.wst.jsdt.doc/development/limitations.html b/docs/org.eclipse.wst.jsdt.doc/development/limitations.html
deleted file mode 100644
index 7584407f..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/development/limitations.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>Limitations</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Limitations</h1>
-<table><tr><td>&nbsp;</td><td>
-In progress...<br><br>
-Most implementations of Javascript are loosely based on a core script standard called ECMA. Beyond the
-standard there is a common set of non-standard language constructs supported by most implementations and
-other functions/constructs that are only supported by a subset of the Javascript implementations.<br><br>
-Quite a few public Javascript toolkits as well as the general popular usage of Javascript exploit many of these
-non-standard language aspects making a pure modeling of the language difficult (if not impossible). Our solution
-is a complex inference engine that analyzes your Javascript to help build an accurate model. Unfortunatly the
-inference isn't always perfect. For these reasons some Javascript class inference may be imperfect and mark
-fields/methods/types in error that really aren't. Of course we are working on this and plan to work with
-more etche cases as we progress..
-
-<br><br>
-To see how you can assist without writing JavaCode, please refer to the Contributing section under <a href="../contributing/library.html">Libraries</a>.
-</td></tr></table>
-<br>
-<p class="runningfooter">(C) Copyright IBM Corporation 2005. All
-Rights Reserved.<br>
-IBM is a registered trademark of IBM. All other trademarks are the
-property of their respective owners.</p>
-<br>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/features/index.html b/docs/org.eclipse.wst.jsdt.doc/features/index.html
deleted file mode 100644
index 392a8b6a..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/features/index.html
+++ /dev/null
@@ -1,82 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>JavaScript Source Files</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Features - Javascript Developtment Toolkit (JSDT)</h1>
-
-<h3>Javascript Source Files (.js)</h3>
-<table><tr><td>&nbsp;</td><td>
-<ul>
-<li>Syntax Highlighting</li>
-<li>Folding / Line Numbers</li>
-<li>Full Outlining showing Classes, Functions and Fields</li>
-<li>Highlight and check of matching bracket / parenthesis</li>
-<li>Auto-complete of brackets, parenthesies and indentation</li>
-<li>Mark Occurance</li>
-<li>Comment Toggle (line and block)</li>
-<li>Generate Element JsDoc</li>
-<li>Smart Code Completion based on real-time Javascript Model</li>
-<li>Hover Help that display element declaration and JsDoc or Error message</li>
-<li>Configurable Error/Warning checking includes full language syntax and type/class structure resolution</li>
-<li>Flow analysis shows unreachable code, unused variables and variable hiding.</li>
-<li>Quick-fix for unresolved fields and types.</li>
-<li>Surround with do, for, try/catch, while</li>
-<li>Completion Templates</li>
-<li>Extract Function/Change function signature</li>
-<li>Indentation Correction</li>
-<li>Open Declaration</li>
-<li>Open Type Hierarchy</li>
-<li>Open Call Hierarchy</li>
-<li>Extensibly customizable Code Formating</li>
-<li>Full Search</li>
-<li>Refactor/Rename/Move</li>
-<li>Breakpoint Support</li>
-<li>Browswer libraries with JsDoc for FireFox, Internet Explorer and ECMA 3</li>
-<li>Support for user defined libraries using JsDoc + Javascript prototype structure definitions</li>
-<li>Full extension support for Library UI and core</li>
-<li>Library Image Support</li>
-</ul>
-</td></tr></table>
-
-<h3>HTML and JSP With Embeded Javascript (Requires WST Plugins)</h3>
-<table><tr><td>&nbsp;</td><td>
-<ul>
-<li>Syntax Highlighting</li>
-<li>Folding / Line Numbers</li>
-<li>Full Outlining showing Classes, Functions and Fields</li>
-<li>Highlight and check of matching bracket / parenthesis</li>
-<li>Auto-complete of brackets, parenthesies and indentation</li>
-<li>Mark Occurance</li>
-<li>Generate Element JsDoc (From outline)</li>
-<li>Smart Code Completion based on real-time Javascript Model</li>
-<li>Hover Help that display element declaration and JsDoc or Error message</li>
-<li>Configurable Error/Warning checking includes full language syntax and type/class structure resolution</li>
-<li>Flow analysis shows unreachable code, unused variables and variable hiding.</li>
-<li>Completion Templates</li>
-<li>Indentation Correction</li>
-<li>Open Declaration (From outline)</li>
-<li>Open Type Hierarchy (From outline)</li>
-<li>Open Call Hierarchy (From outline)</li>
-<li>Extensibly customizable Code Formating</li>
-<li>Full Search</li>
-<li>Breakpoint Support</li>
-<li>Browswer libraries with JsDoc for FireFox, Internet Explorer and ECMA 3</li>
-<li>Support for user defined libraries using JsDoc + Javascript prototype structure definitions</li>
-<li>Full extension support for Library UI and core</li>
-<li>Library Image Support</li>
-</ul>
-</td></tr></table>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/framework/index.html b/docs/org.eclipse.wst.jsdt.doc/framework/index.html
deleted file mode 100644
index 96b48750..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/framework/index.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link href="../jsdtdocs.css" rel="STYLESHEET" CHARSET="ISO-8859-1" TYPE="text/css">
-<link rel="stylesheet" type="text/css" href="../content/PLUGINS_ROOT/PRODUCT_PLUGIN/book.css">
-<title>JSDT Framework Index</title>
-<meta content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights
-reserved. This program and the accompanying materials are made available under
-the terms of the Eclipse Public License v1.0 which accompanies this
-distribution, and is available at http://www.eclipse.org/legal/epl-v10.html.
-Contributors: IBM Corporation - initial API and implementation"
-name="copyright" />
-</head>
-<body>
-<h1>Javascript Development Toolkit (JSDT)</h1>
-<h3 class="NavListTitle">Contents</h3>
-<ul class="NavList">
-<li><a href="../topic/org.eclipse.wst.doc.isv/html/plugin_descriptions_WST/wst.html">Features</a></li>
-<li><a href="14_1">Getting Started</a></li>
-<li><a href="14_1">Advanced Javascript Editing with the JSDT</a></li>
-<li><a href="14_1">JSDT Framework Developers Guide</a></li>
-<li><a href="14_1">Contributing to the JSDT Framework or Libraries</a></li>
-<li><a href="../topic/org.eclipse.wst.doc.isv/notices.html">Legal</a></li>
-</ul>
-
-</body>
-</html>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/allclasses-frame.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/allclasses-frame.html
deleted file mode 100644
index 80f13052..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/allclasses-frame.html
+++ /dev/null
@@ -1,1084 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.5.0_12) on Fri May 30 11:16:20 CDT 2008 -->
-<TITLE>
-All Classes
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-
-</HEAD>
-
-<BODY BGCOLOR="white">
-<FONT size="+1" CLASS="FrameHeadingFont">
-<B>All Classes</B></FONT>
-<BR>
-
-<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
-<TR>
-<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="org/eclipse/wst/jsdt/ui/text/java/AbstractProposalSorter.html" title="class in org.eclipse.wst.jsdt.ui.text.java" target="classFrame">AbstractProposalSorter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/AbstractTypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">AbstractTypeDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/AnonymousClassDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">AnonymousClassDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ArrayAccess.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ArrayAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ArrayCreation.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ArrayCreation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ArrayInitializer.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ArrayInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ArrayType.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ArrayType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/AssertStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">AssertStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Assignment.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Assignment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Assignment.Operator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/AST.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">AST</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ASTMatcher</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ASTNode</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTParser.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ASTParser</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTRequestor.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ASTRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite" target="classFrame">ASTRewrite</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.ast" target="classFrame">ASTVisitor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ASTVisitor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/BaseLibraryWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">BaseLibraryWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryContainerUIExtension.html" title="class in org.eclipse.wst.jsdt.libraries" target="classFrame">BasicBrowserLibraryContainerUIExtension</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.libraries" target="classFrame">BasicBrowserLibraryJsGlobalScopeContainerInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/libraries/BasicLibraryContainer.html" title="class in org.eclipse.wst.jsdt.libraries" target="classFrame">BasicLibraryContainer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/BindingKey.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">BindingKey</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Block.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Block</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/BlockComment.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">BlockComment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/BodyDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">BodyDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/BooleanLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">BooleanLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/BreakStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">BreakStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/BufferChangedEvent.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">BufferChangedEvent</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/BuildContext.html" title="class in org.eclipse.wst.jsdt.core.compiler" target="classFrame">BuildContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">BuildPathDialogAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/CastExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">CastExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/CatchClause.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">CatchClause</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler" target="classFrame">CategorizedProblem</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ChangeMethodSignatureDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/CharacterLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">CharacterLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler" target="classFrame">CharOperation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ChildListPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ChildListPropertyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ChildPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ChildPropertyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ClassInstanceCreation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">ClasspathAttributeConfiguration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.ClasspathAttributeAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">ClasspathAttributeConfiguration.ClasspathAttributeAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html" title="class in org.eclipse.wst.jsdt.core.formatter" target="classFrame">CodeFormatter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatterApplication.html" title="class in org.eclipse.wst.jsdt.core.formatter" target="classFrame">CodeFormatterApplication</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/CodeGeneration.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">CodeGeneration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/CodeStyleConfiguration.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">CodeStyleConfiguration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Comment.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Comment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/CompilationUnitHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">CompilationUnitHelper</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CompletionContext.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">CompletionContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CompletionFlags.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">CompletionFlags</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">CompletionProposal</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html" title="class in org.eclipse.wst.jsdt.ui.text.java" target="classFrame">CompletionProposalCollector</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/CompletionProposalComparator.html" title="class in org.eclipse.wst.jsdt.ui.text.java" target="classFrame">CompletionProposalComparator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.java" target="classFrame">CompletionProposalLabelProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">CompletionRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ConditionalExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ConditionalExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ConstructorInvocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java" target="classFrame">ContentAssistInvocationContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ContinueStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ContinueStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ConvertAnonymousDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ConvertLocalVariableDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ConvertMemberTypeDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">CopyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CorrectionEngine.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">CorrectionEngine</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html" title="class in org.eclipse.wst.jsdt.core.formatter" target="classFrame">DefaultCodeFormatterConstants</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/DefaultInferrenceProvider.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">DefaultInferrenceProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.folding" target="classFrame">DefaultJavaFoldingStructureProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/DeleteDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">DeleteDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/internal/core/index/DiskIndex.html" title="class in org.eclipse.wst.jsdt.internal.core.index" target="classFrame">DiskIndex</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/DocumentChangeListenerToTextEdit.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">DocumentChangeListenerToTextEdit</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/DoStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">DoStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ElementChangedEvent.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">ElementChangedEvent</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/ElementQuerySpecification.html" title="class in org.eclipse.wst.jsdt.ui.search" target="classFrame">ElementQuerySpecification</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/EmptyExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">EmptyExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/EmptyStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">EmptyStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/EncapsulateFieldDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">EncapsulateFieldDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/EnhancedForStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">EnhancedForStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/internal/core/index/EntryResult.html" title="class in org.eclipse.wst.jsdt.internal.core.index" target="classFrame">EntryResult</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Expression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Expression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ExpressionStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ExpressionStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractConstantDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ExtractConstantDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractInterfaceDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ExtractInterfaceDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractLocalDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ExtractLocalDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractMethodDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ExtractMethodDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractSuperclassDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">ExtractSuperclassDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FieldAccess.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">FieldAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">FieldDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/FieldDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">FieldDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/FieldReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">FieldReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries" target="classFrame">FireFoxLibInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxUiInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries" target="classFrame">FireFoxUiInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">Flags</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ForInStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ForInStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ForStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ForStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">FunctionDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">FunctionExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">FunctionInvocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionRef.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">FunctionRef</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionRefParameter.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">FunctionRefParameter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/GeneralizeTypeDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">GeneralizeTypeDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame"><I>HTML40Namespace</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame"><I>HTML40Namespace.ElementName</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame"><I>HTML40Namespace.EntityName</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAbstractFunctionDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IAbstractFunctionDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAbstractVariableDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IAbstractVariableDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IAccessRule.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IAccessRule</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAllocationExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IAllocationExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAND_AND_Expression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IAND_AND_Expression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAnnotation.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IAnnotation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAnnotationFunctionDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IAnnotationFunctionDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArgument.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IArgument</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayAllocationExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IArrayAllocationExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayInitializer.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IArrayInitializer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IArrayQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IArrayReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IArrayTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAssertStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IAssertStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAssignment.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IAssignment</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IASTNode</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IBinaryExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IBinaryExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom" target="classFrame"><I>IBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IBlock.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IBlock</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IBranchStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IBranchStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IBreakStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IBreakStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IBuffer.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IBuffer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IBufferChangedListener.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IBufferChangedListener</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IBufferFactory.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IBufferFactory</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICaseStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ICaseStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICastExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ICastExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICharLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ICharLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IClassFile.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IClassFile</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ICodeAssist.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ICodeAssist</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html" title="interface in org.eclipse.wst.jsdt.core.eval" target="classFrame"><I>ICodeSnippetRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/IColorManager.html" title="interface in org.eclipse.wst.jsdt.ui.text" target="classFrame"><I>IColorManager</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/IColorManagerExtension.html" title="interface in org.eclipse.wst.jsdt.ui.text" target="classFrame"><I>IColorManagerExtension</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICombinedBinaryExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ICombinedBinaryExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ICompletionRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICompoundAssignment.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ICompoundAssignment</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IConditionalExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IConditionalExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IConstructorDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IConstructorDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IContextMenuConstants.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>IContextMenuConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IContinueStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IContinueStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ICorrectionRequestor.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ICorrectionRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IDocumentationReader.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>IDocumentationReader</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IDoStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IDoStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IDoubleLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IDoubleLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IElementChangedListener.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IElementChangedListener</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IEmptyExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IEmptyExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IEmptyStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IEmptyStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IEqualExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IEqualExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval" target="classFrame"><I>IEvaluationContext</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IExplicitConstructorCall.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IExplicitConstructorCall</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IExtendedModifier.html" title="interface in org.eclipse.wst.jsdt.core.dom" target="classFrame"><I>IExtendedModifier</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IExtendedStringLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IExtendedStringLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFalseLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IFalseLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IField.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IField</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFieldDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IFieldDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFieldReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IFieldReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFloatLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IFloatLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IForeachStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IForeachStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IForInStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IForInStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IForStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IForStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IfStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">IfStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IFunction.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IFunction</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IFunctionBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom" target="classFrame"><I>IFunctionBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFunctionCall.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IFunctionCall</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IFunctionContainer.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IFunctionContainer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFunctionDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IFunctionDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFunctionExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IFunctionExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/eval/IGlobalVariable.html" title="interface in org.eclipse.wst.jsdt.core.eval" target="classFrame"><I>IGlobalVariable</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IIfStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IIfStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IImportContainer.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IImportContainer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IImportDeclaration.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IImportDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IImportReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IImportReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IIncludePathAttribute.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IIncludePathAttribute</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IIncludePathEntry</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/IInferenceFile.html" title="interface in org.eclipse.wst.jsdt.core.infer" target="classFrame"><I>IInferenceFile</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IInitializer.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IInitializer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IInitializer.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IInitializer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IInstanceOfExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IInstanceOfExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IIntLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IIntLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IIntLiteralMinValue.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IIntLiteralMinValue</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IInvocationContext.html" title="interface in org.eclipse.wst.jsdt.ui.text.java" target="classFrame"><I>IInvocationContext</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJarEntryResource.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJarEntryResource</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposal.html" title="interface in org.eclipse.wst.jsdt.ui.text.java" target="classFrame"><I>IJavaCompletionProposal</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposalComputer.html" title="interface in org.eclipse.wst.jsdt.ui.text.java" target="classFrame"><I>IJavaCompletionProposalComputer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IJavadocCompletionProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java" target="classFrame"><I>IJavadocCompletionProcessor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/hover/IJavaEditorTextHover.html" title="interface in org.eclipse.wst.jsdt.ui.text.java.hover" target="classFrame"><I>IJavaEditorTextHover</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding" target="classFrame"><I>IJavaFoldingPreferenceBlock</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProvider.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding" target="classFrame"><I>IJavaFoldingStructureProvider</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding" target="classFrame"><I>IJavaFoldingStructureProviderExtension</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text" target="classFrame"><I>IJavaScriptColorConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJavaScriptElement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJavaScriptElementDelta</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptElementMapper.html" title="interface in org.eclipse.wst.jsdt.core.refactoring" target="classFrame"><I>IJavaScriptElementMapper</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>IJavaScriptElementSearchConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModel.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJavaScriptModel</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJavaScriptModelMarker</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatus.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJavaScriptModelStatus</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJavaScriptModelStatusConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text" target="classFrame"><I>IJavaScriptPartitions</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptProject.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJavaScriptProject</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html" title="interface in org.eclipse.wst.jsdt.core.refactoring" target="classFrame"><I>IJavaScriptRefactorings</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html" title="interface in org.eclipse.wst.jsdt.core.search" target="classFrame"><I>IJavaScriptSearchConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html" title="interface in org.eclipse.wst.jsdt.core.search" target="classFrame"><I>IJavaScriptSearchScope</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJavaScriptUnit</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/IJavaWebNode.html" title="interface in org.eclipse.wst.jsdt.web.ui.views.contentoutline" target="classFrame"><I>IJavaWebNode</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDoc.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDoc</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocAllocationExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocAllocationExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocArgumentExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocArgumentExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocArrayQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocArrayQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocArraySingleTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocArraySingleTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocFieldReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocFieldReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocImplicitTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocImplicitTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocMessageSend.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocMessageSend</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocReturnStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocReturnStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocSingleNameReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocSingleNameReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocSingleTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IJsDocSingleTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJsGlobalScopeContainer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IJsGlobalScopeContainerInitializer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPage.html" title="interface in org.eclipse.wst.jsdt.ui.wizards" target="classFrame"><I>IJsGlobalScopeContainerPage</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPageExtension.html" title="interface in org.eclipse.wst.jsdt.ui.wizards" target="classFrame"><I>IJsGlobalScopeContainerPageExtension</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPageExtension2.html" title="interface in org.eclipse.wst.jsdt.ui.wizards" target="classFrame"><I>IJsGlobalScopeContainerPageExtension2</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/text/IJsPartitions.html" title="interface in org.eclipse.wst.jsdt.web.core.text" target="classFrame"><I>IJsPartitions</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/IJsTranslation.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame"><I>IJsTranslation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/IJsTranslator.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame"><I>IJsTranslator</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILabeledStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ILabeledStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IListExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IListExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ILiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILocalDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ILocalDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ILocalVariable.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ILocalVariable</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILongLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ILongLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILongLiteralMinValue.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ILongLiteralMinValue</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ILookupScope.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ILookupScope</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IMagicLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IMagicLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IMarkerAnnotation.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IMarkerAnnotation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/IMatchPresentation.html" title="interface in org.eclipse.wst.jsdt.ui.search" target="classFrame"><I>IMatchPresentation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IMember.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IMember</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IMemberValuePair.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IMemberValuePair</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IMemberValuePairBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom" target="classFrame"><I>IMemberValuePairBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html" title="interface in org.eclipse.wst.jsdt.core.util" target="classFrame"><I>IModifierConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ImportDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite" target="classFrame">ImportRewrite</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite" target="classFrame">ImportRewrite.ImportRewriteContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/ImportRewriteSupport.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">ImportRewriteSupport</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/INameReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>INameReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html" title="class in org.eclipse.wst.jsdt.core.formatter" target="classFrame">IndentManipulation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/internal/core/index/Index.html" title="class in org.eclipse.wst.jsdt.internal.core.index" target="classFrame">Index</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/IndexWorkspaceJob.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">IndexWorkspaceJob</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferEngine.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">InferEngine</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">InferOptions</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferredAttribute.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">InferredAttribute</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferredMember.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">InferredMember</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferredMethod.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">InferredMethod</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/InferredType.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">InferredType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">InferredType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceManager.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">InferrenceManager</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html" title="interface in org.eclipse.wst.jsdt.core.infer" target="classFrame"><I>InferrenceProvider</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceSupportExtension.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">InferrenceSupportExtension</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/InferTypeArgumentsDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">InferTypeArgumentsDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/InfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">InfixExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">InfixExpression.Operator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Initializer.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Initializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineConstantDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">InlineConstantDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineLocalVariableDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">InlineLocalVariableDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineMethodDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">InlineMethodDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/INormalAnnotation.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>INormalAnnotation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/InstanceofExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">InstanceofExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries" target="classFrame">InternetExplorerLibInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerUILibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries" target="classFrame">InternetExplorerUILibInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceFactoryDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">IntroduceFactoryDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceIndirectionDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">IntroduceIndirectionDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceParameterDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">IntroduceParameterDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/INullLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>INullLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/INumberLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>INumberLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/InvalidInputException.html" title="class in org.eclipse.wst.jsdt.core.compiler" target="classFrame">InvalidInputException</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IObjectLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IObjectLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IObjectLiteralField.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IObjectLiteralField</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IOpenable.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IOpenable</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IOperatorExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IOperatorExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IOR_OR_Expression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IOR_OR_Expression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IPackageBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom" target="classFrame"><I>IPackageBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IPackageDeclaration.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IPackageDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IPackageFragment.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IPackageFragment</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IPackageFragmentRoot</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IPackagesViewPart.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>IPackagesViewPart</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IParameterizedQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IParameterizedQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IParameterizedSingleTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IParameterizedSingleTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IParent.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IParent</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IPostfixExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IPostfixExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IPrefixExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IPrefixExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler" target="classFrame"><I>IProblem</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IProblemLocation.html" title="interface in org.eclipse.wst.jsdt.ui.text.java" target="classFrame"><I>IProblemLocation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IProblemRequestor.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IProblemRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IProgramElement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IProgramElement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedAllocationExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IQualifiedAllocationExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedNameReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IQualifiedNameReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedSuperReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IQualifiedSuperReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedThisReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IQualifiedThisReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/IQueryParticipant.html" title="interface in org.eclipse.wst.jsdt.ui.search" target="classFrame"><I>IQueryParticipant</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IQuickAssistProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java" target="classFrame"><I>IQuickAssistProcessor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IQuickFixProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java" target="classFrame"><I>IQuickFixProcessor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html" title="interface in org.eclipse.wst.jsdt.ui.refactoring" target="classFrame"><I>IRefactoringProcessorIds</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IRegExLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IRegExLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IRegion.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IRegion</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IReturnStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IReturnStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/IScanner.html" title="interface in org.eclipse.wst.jsdt.core.compiler" target="classFrame"><I>IScanner</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IScriptFileDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IScriptFileDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/ISearchRequestor.html" title="interface in org.eclipse.wst.jsdt.ui.search" target="classFrame"><I>ISearchRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>ISharedImages</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISingleMemberAnnotation.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ISingleMemberAnnotation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISingleNameReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ISingleNameReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISingleTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ISingleTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ISourceManipulation.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ISourceManipulation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ISourceRange.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ISourceRange</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ISourceReference.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ISourceReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IStringLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IStringLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IStringLiteralConcatenation.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IStringLiteralConcatenation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISubRoutineStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ISubRoutineStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISuperReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ISuperReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISwitchStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ISwitchStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html" title="interface in org.eclipse.wst.jsdt.core.compiler" target="classFrame"><I>ITerminalSymbols</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IThisReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IThisReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IThrowStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IThrowStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ITrackedNodePosition.html" title="interface in org.eclipse.wst.jsdt.core.dom.rewrite" target="classFrame"><I>ITrackedNodePosition</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITrueLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ITrueLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITryStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ITryStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IType</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ITypeBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom" target="classFrame"><I>ITypeBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITypeDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ITypeDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ITypeHierarchy.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ITypeHierarchy</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ITypeHierarchyChangedListener.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ITypeHierarchyChangedListener</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>ITypeHierarchyViewPart</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITypeParameter.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ITypeParameter</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ITypeParameter.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ITypeParameter</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>ITypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ITypeRoot.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>ITypeRoot</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IUnaryExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IUnaryExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IUndefinedLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IUndefinedLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IVariableBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom" target="classFrame"><I>IVariableBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IWhileStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IWhileStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IWildcard.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IWildcard</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IWithStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast" target="classFrame"><I>IWithStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html" title="interface in org.eclipse.wst.jsdt.core" target="classFrame"><I>IWorkingCopy</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IWorkingCopyManager.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>IWorkingCopyManager</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IWorkingCopyManagerExtension.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>IWorkingCopyManagerExtension</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IWorkingCopyProvider.html" title="interface in org.eclipse.wst.jsdt.ui" target="classFrame"><I>IWorkingCopyProvider</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">JavaCapabilityConfigurationPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/JavaContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java" target="classFrame">JavaContentAssistInvocationContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaElementSorter.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaElementSorter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">JavaScriptConventions</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">JavaScriptCore</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaScriptElementComparator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaScriptElementImageDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaScriptElementLabelProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaScriptElementLabels</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptLibrariesAction.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaScriptLibrariesAction</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.html" title="class in org.eclipse.wst.jsdt.core.manipulation" target="classFrame">JavaScriptManipulation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JavaScriptModelException.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">JavaScriptModelException</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">JavaScriptRefactoringContribution</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">JavaScriptRefactoringDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptSourceFoldersAction.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaScriptSourceFoldersAction</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/JavaScriptSourceViewerConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.text" target="classFrame">JavaScriptSourceViewerConfiguration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptSuperTypeAction.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaScriptSuperTypeAction</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html" title="class in org.eclipse.wst.jsdt.ui.text" target="classFrame">JavaScriptTextTools</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JavaScriptUI</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">JavaScriptUnit</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/util/JavaScriptUnitSorter.html" title="class in org.eclipse.wst.jsdt.core.util" target="classFrame">JavaScriptUnitSorter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterFactoryForJSDT.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline" target="classFrame">JFaceNodeAdapterFactoryForJSDT</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterForJs.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline" target="classFrame">JFaceNodeAdapterForJs</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame"><I>JsDataTypes</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/JSdoc.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">JSdoc</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JSdocContentAccess.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">JSdocContentAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JSDScopeUtil.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">JSDScopeUtil</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JSDTSearchDocumentDelegate.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">JSDTSearchDocumentDelegate</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">JsGlobalScopeContainerInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeVariableInitializer.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">JsGlobalScopeVariableInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsIndexManager.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">JsIndexManager</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline" target="classFrame">JsJfaceNode</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsNameManglerUtil.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">JsNameManglerUtil</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/project/JsNature.html" title="class in org.eclipse.wst.jsdt.ui.project" target="classFrame">JsNature</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsPathIndexer.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">JsPathIndexer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchDocument.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">JsSearchDocument</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchParticipant.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">JsSearchParticipant</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">JsSearchScope</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchSupport.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">JsSearchSupport</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsTranslation.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">JsTranslation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapter.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">JsTranslationAdapter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapterFactory.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">JsTranslationAdapterFactory</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">JsTranslator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/LabeledStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">LabeledStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/LibraryLocation.html" title="interface in org.eclipse.wst.jsdt.core.compiler.libraries" target="classFrame"><I>LibraryLocation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/LibrarySuperType.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">LibrarySuperType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/LineComment.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">LineComment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ListExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ListExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite" target="classFrame">ListRewrite</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/LocalVariableDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">LocalVariableDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/LocalVariableReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">LocalVariableReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/MemberRef.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">MemberRef</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/internal/core/index/MemoryIndex.html" title="class in org.eclipse.wst.jsdt.internal.core.index" target="classFrame">MemoryIndex</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Message.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Message</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/Messages.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/libraries/Messages.html" title="class in org.eclipse.wst.jsdt.libraries" target="classFrame">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/Messages.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/Messages.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/Messages.html" title="class in org.eclipse.wst.jsdt.web.ui" target="classFrame">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/Messages.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline" target="classFrame">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/MethodDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">MethodDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">MethodReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Modifier</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Modifier.ModifierKeyword</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">MoveDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">MoveMethodDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">MoveStaticMembersDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Name.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Name</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/NamingConventions.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">NamingConventions</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewClassWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">NewClassWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewContainerWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">NewContainerWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewElementWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">NewElementWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewInterfaceWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">NewInterfaceWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewJavaProjectWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">NewJavaProjectWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">NewPackageWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">NewTypeWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html" title="class in org.eclipse.wst.jsdt.ui.wizards" target="classFrame">NewTypeWizardPage.ImportsManager</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">NodeHelper</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/NullLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">NullLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/NullSearchDocument.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search" target="classFrame">NullSearchDocument</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/NumberLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">NumberLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ObjectLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ObjectLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ObjectLiteralField.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ObjectLiteralField</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">OverrideIndicatorLabelDecorator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">PackageDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/PackageDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">PackageDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/PackageReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">PackageReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ParameterizedType.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ParameterizedType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ParenthesizedExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ParenthesizedExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/PatternQuerySpecification.html" title="class in org.eclipse.wst.jsdt.ui.search" target="classFrame">PatternQuerySpecification</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PostfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">PostfixExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PostfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">PostfixExpression.Operator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">PreferenceConstants</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PrefixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">PrefixExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">PrefixExpression.Operator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">PrimitiveType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PrimitiveType.Code.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">PrimitiveType.Code</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">ProblemsLabelDecorator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.ProblemsLabelChangedEvent.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">ProblemsLabelDecorator.ProblemsLabelChangedEvent</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ProgramElement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ProgramElement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">ProjectLibraryRoot</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.WorkBenchAdapter.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">ProjectLibraryRoot.WorkBenchAdapter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/PullUpDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">PullUpDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/PushDownDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">PushDownDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/QualifiedName.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">QualifiedName</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/QualifiedType.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">QualifiedType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/QuerySpecification.html" title="class in org.eclipse.wst.jsdt.ui.search" target="classFrame">QuerySpecification</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/ReconcileContext.html" title="class in org.eclipse.wst.jsdt.core.compiler" target="classFrame">ReconcileContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/RefactoringSupport.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">RefactoringSupport</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/RegularExpressionLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">RegularExpressionLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">RenameJavaScriptElementDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameLocalVariableDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">RenameLocalVariableDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameResourceDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">RenameResourceDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring" target="classFrame">RenameSupport</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/RenameTypeArguments.html" title="class in org.eclipse.wst.jsdt.core.refactoring" target="classFrame">RenameTypeArguments</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/ResolutionConfiguration.html" title="class in org.eclipse.wst.jsdt.core.infer" target="classFrame">ResolutionConfiguration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ReturnStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ReturnStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchDocument.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">SearchDocument</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">SearchEngine</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">SearchMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchParticipant.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">SearchParticipant</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">SearchPattern</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchRequestor.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">SearchRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/SetupProjectsWizzard.html" title="class in org.eclipse.wst.jsdt.web.ui" target="classFrame">SetupProjectsWizzard</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">Signature</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SimpleName.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SimpleName</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SimplePropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SimplePropertyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SimpleType.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SimpleType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SingleVariableDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/StandardJavaScriptElementContentProvider.html" title="class in org.eclipse.wst.jsdt.ui" target="classFrame">StandardJavaScriptElementContentProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Statement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Statement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/StringLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">StringLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/StructuralPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">StructuralPropertyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.html" title="class in org.eclipse.wst.jsdt.web.ui" target="classFrame">StructuredTextViewerConfigurationJSDT</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html" title="class in org.eclipse.wst.jsdt.web.ui" target="classFrame">StructuredTextViewerConfigurationJSDT.externalTypeExtension</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SuperConstructorInvocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SuperFieldAccess.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SuperFieldAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SuperMethodInvocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SwitchCase.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SwitchCase</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SwitchStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">SwitchStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries" target="classFrame">SystemLibraryLocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">TagElement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/TargetSourceRangeComputer.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite" target="classFrame">TargetSourceRangeComputer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/TargetSourceRangeComputer.SourceRange.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite" target="classFrame">TargetSourceRangeComputer.SourceRange</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TextElement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">TextElement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ThisExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ThisExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ThrowStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">ThrowStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">ToolFactory</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TryStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">TryStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Type.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">Type</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">TypeDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">TypeDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclarationStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">TypeDeclarationStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TypeLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">TypeLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeNameMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">TypeNameMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeNameMatchRequestor.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">TypeNameMatchRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeNameRequestor.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">TypeNameRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TypeParameter.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">TypeParameter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeParameterDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">TypeParameterDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeParameterReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">TypeParameterReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search" target="classFrame">TypeReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/UndefinedLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">UndefinedLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/UnimplementedException.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">UnimplementedException</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/UseSupertypeDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors" target="classFrame">UseSupertypeDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/Util.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">Util</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html" title="class in org.eclipse.wst.jsdt.core.compiler" target="classFrame">ValidationParticipant</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">VariableDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">VariableDeclarationExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationFragment.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">VariableDeclarationFragment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">VariableDeclarationStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/WebProjectJsGlobalScopeUIInitializer.html" title="class in org.eclipse.wst.jsdt.web.ui" target="classFrame">WebProjectJsGlobalScopeUIInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/WebRootFinder.html" title="class in org.eclipse.wst.jsdt.web.core.javascript" target="classFrame">WebRootFinder</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/WhileStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">WhileStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/WildcardType.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">WildcardType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/WithStatement.html" title="class in org.eclipse.wst.jsdt.core.dom" target="classFrame">WithStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/WorkingCopyOwner.html" title="class in org.eclipse.wst.jsdt.core" target="classFrame">WorkingCopyOwner</A>
-<BR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/allclasses-noframe.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/allclasses-noframe.html
deleted file mode 100644
index 03a50e7f..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/allclasses-noframe.html
+++ /dev/null
@@ -1,1084 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.5.0_12) on Fri May 30 11:16:20 CDT 2008 -->
-<TITLE>
-All Classes
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-
-</HEAD>
-
-<BODY BGCOLOR="white">
-<FONT size="+1" CLASS="FrameHeadingFont">
-<B>All Classes</B></FONT>
-<BR>
-
-<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
-<TR>
-<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="org/eclipse/wst/jsdt/ui/text/java/AbstractProposalSorter.html" title="class in org.eclipse.wst.jsdt.ui.text.java">AbstractProposalSorter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/AbstractTypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">AbstractTypeDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/AnonymousClassDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">AnonymousClassDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ArrayAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ArrayCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayCreation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ArrayInitializer.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ArrayType.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/AssertStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">AssertStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Assignment.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment.Operator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/AST.html" title="class in org.eclipse.wst.jsdt.core.dom">AST</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTParser.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTParser</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTRequestor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ASTRewrite</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.ast">ASTVisitor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTVisitor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/BaseLibraryWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BaseLibraryWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryContainerUIExtension.html" title="class in org.eclipse.wst.jsdt.libraries">BasicBrowserLibraryContainerUIExtension</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.libraries">BasicBrowserLibraryJsGlobalScopeContainerInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/libraries/BasicLibraryContainer.html" title="class in org.eclipse.wst.jsdt.libraries">BasicLibraryContainer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/BindingKey.html" title="class in org.eclipse.wst.jsdt.core">BindingKey</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Block.html" title="class in org.eclipse.wst.jsdt.core.dom">Block</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/BlockComment.html" title="class in org.eclipse.wst.jsdt.core.dom">BlockComment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/BodyDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">BodyDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/BooleanLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">BooleanLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/BreakStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">BreakStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/BufferChangedEvent.html" title="class in org.eclipse.wst.jsdt.core">BufferChangedEvent</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/BuildContext.html" title="class in org.eclipse.wst.jsdt.core.compiler">BuildContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/CastExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">CastExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/CatchClause.html" title="class in org.eclipse.wst.jsdt.core.dom">CatchClause</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ChangeMethodSignatureDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/CharacterLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">CharacterLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ChildListPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom">ChildListPropertyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ChildPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom">ChildPropertyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ClassInstanceCreation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards">ClasspathAttributeConfiguration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.ClasspathAttributeAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">ClasspathAttributeConfiguration.ClasspathAttributeAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html" title="class in org.eclipse.wst.jsdt.core.formatter">CodeFormatter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatterApplication.html" title="class in org.eclipse.wst.jsdt.core.formatter">CodeFormatterApplication</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/CodeGeneration.html" title="class in org.eclipse.wst.jsdt.ui">CodeGeneration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/CodeStyleConfiguration.html" title="class in org.eclipse.wst.jsdt.ui">CodeStyleConfiguration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Comment.html" title="class in org.eclipse.wst.jsdt.core.dom">Comment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/CompilationUnitHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">CompilationUnitHelper</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CompletionContext.html" title="class in org.eclipse.wst.jsdt.core">CompletionContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CompletionFlags.html" title="class in org.eclipse.wst.jsdt.core">CompletionFlags</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalCollector</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/CompletionProposalComparator.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalComparator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalLabelProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html" title="class in org.eclipse.wst.jsdt.core">CompletionRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ConditionalExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">ConditionalExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">ConstructorInvocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java">ContentAssistInvocationContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ContinueStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ContinueStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ConvertAnonymousDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ConvertLocalVariableDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ConvertMemberTypeDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">CopyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/CorrectionEngine.html" title="class in org.eclipse.wst.jsdt.core">CorrectionEngine</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html" title="class in org.eclipse.wst.jsdt.core.formatter">DefaultCodeFormatterConstants</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/DefaultInferrenceProvider.html" title="class in org.eclipse.wst.jsdt.core.infer">DefaultInferrenceProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.folding">DefaultJavaFoldingStructureProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/DeleteDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">DeleteDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/internal/core/index/DiskIndex.html" title="class in org.eclipse.wst.jsdt.internal.core.index">DiskIndex</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/DocumentChangeListenerToTextEdit.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">DocumentChangeListenerToTextEdit</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/DoStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">DoStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ElementChangedEvent.html" title="class in org.eclipse.wst.jsdt.core">ElementChangedEvent</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/ElementQuerySpecification.html" title="class in org.eclipse.wst.jsdt.ui.search">ElementQuerySpecification</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/EmptyExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">EmptyExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/EmptyStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">EmptyStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/EncapsulateFieldDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">EncapsulateFieldDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/EnhancedForStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">EnhancedForStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/internal/core/index/EntryResult.html" title="class in org.eclipse.wst.jsdt.internal.core.index">EntryResult</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Expression.html" title="class in org.eclipse.wst.jsdt.core.dom">Expression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ExpressionStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ExpressionStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractConstantDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ExtractConstantDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractInterfaceDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ExtractInterfaceDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractLocalDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ExtractLocalDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractMethodDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ExtractMethodDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/ExtractSuperclassDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ExtractSuperclassDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FieldAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">FieldAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FieldDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/FieldDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">FieldDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/FieldReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">FieldReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">FireFoxLibInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxUiInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">FireFoxUiInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ForInStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ForInStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ForStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ForStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionInvocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionRef.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionRef</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/FunctionRefParameter.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionRefParameter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/GeneralizeTypeDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">GeneralizeTypeDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript"><I>HTML40Namespace</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript"><I>HTML40Namespace.ElementName</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript"><I>HTML40Namespace.EntityName</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAbstractFunctionDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IAbstractFunctionDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAbstractVariableDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IAbstractVariableDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IAccessRule.html" title="interface in org.eclipse.wst.jsdt.core"><I>IAccessRule</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAllocationExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IAllocationExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAND_AND_Expression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IAND_AND_Expression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAnnotation.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IAnnotation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAnnotationFunctionDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IAnnotationFunctionDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArgument.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IArgument</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayAllocationExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IArrayAllocationExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayInitializer.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IArrayInitializer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IArrayQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IArrayReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IArrayTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IArrayTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAssertStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IAssertStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IAssignment.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IAssignment</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IASTNode</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IBinaryExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IBinaryExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom"><I>IBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IBlock.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IBlock</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IBranchStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IBranchStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IBreakStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IBreakStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IBuffer.html" title="interface in org.eclipse.wst.jsdt.core"><I>IBuffer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IBufferChangedListener.html" title="interface in org.eclipse.wst.jsdt.core"><I>IBufferChangedListener</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IBufferFactory.html" title="interface in org.eclipse.wst.jsdt.core"><I>IBufferFactory</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICaseStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ICaseStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICastExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ICastExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICharLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ICharLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IClassFile.html" title="interface in org.eclipse.wst.jsdt.core"><I>IClassFile</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ICodeAssist.html" title="interface in org.eclipse.wst.jsdt.core"><I>ICodeAssist</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html" title="interface in org.eclipse.wst.jsdt.core.eval"><I>ICodeSnippetRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/IColorManager.html" title="interface in org.eclipse.wst.jsdt.ui.text"><I>IColorManager</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/IColorManagerExtension.html" title="interface in org.eclipse.wst.jsdt.ui.text"><I>IColorManagerExtension</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICombinedBinaryExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ICombinedBinaryExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core"><I>ICompletionRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ICompoundAssignment.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ICompoundAssignment</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IConditionalExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IConditionalExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IConstructorDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IConstructorDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IContextMenuConstants.html" title="interface in org.eclipse.wst.jsdt.ui"><I>IContextMenuConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IContinueStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IContinueStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ICorrectionRequestor.html" title="interface in org.eclipse.wst.jsdt.core"><I>ICorrectionRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IDocumentationReader.html" title="interface in org.eclipse.wst.jsdt.ui"><I>IDocumentationReader</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IDoStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IDoStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IDoubleLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IDoubleLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IElementChangedListener.html" title="interface in org.eclipse.wst.jsdt.core"><I>IElementChangedListener</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IEmptyExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IEmptyExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IEmptyStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IEmptyStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IEqualExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IEqualExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval"><I>IEvaluationContext</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IExplicitConstructorCall.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IExplicitConstructorCall</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IExtendedModifier.html" title="interface in org.eclipse.wst.jsdt.core.dom"><I>IExtendedModifier</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IExtendedStringLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IExtendedStringLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFalseLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IFalseLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IField.html" title="interface in org.eclipse.wst.jsdt.core"><I>IField</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFieldDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IFieldDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFieldReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IFieldReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFloatLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IFloatLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IForeachStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IForeachStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IForInStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IForInStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IForStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IForStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IfStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">IfStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IFunction.html" title="interface in org.eclipse.wst.jsdt.core"><I>IFunction</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IFunctionBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom"><I>IFunctionBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFunctionCall.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IFunctionCall</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IFunctionContainer.html" title="interface in org.eclipse.wst.jsdt.core"><I>IFunctionContainer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFunctionDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IFunctionDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IFunctionExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IFunctionExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/eval/IGlobalVariable.html" title="interface in org.eclipse.wst.jsdt.core.eval"><I>IGlobalVariable</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IIfStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IIfStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IImportContainer.html" title="interface in org.eclipse.wst.jsdt.core"><I>IImportContainer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IImportDeclaration.html" title="interface in org.eclipse.wst.jsdt.core"><I>IImportDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IImportReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IImportReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IIncludePathAttribute.html" title="interface in org.eclipse.wst.jsdt.core"><I>IIncludePathAttribute</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core"><I>IIncludePathEntry</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/IInferenceFile.html" title="interface in org.eclipse.wst.jsdt.core.infer"><I>IInferenceFile</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IInitializer.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IInitializer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IInitializer.html" title="interface in org.eclipse.wst.jsdt.core"><I>IInitializer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IInstanceOfExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IInstanceOfExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IIntLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IIntLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IIntLiteralMinValue.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IIntLiteralMinValue</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IInvocationContext.html" title="interface in org.eclipse.wst.jsdt.ui.text.java"><I>IInvocationContext</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJarEntryResource.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJarEntryResource</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposal.html" title="interface in org.eclipse.wst.jsdt.ui.text.java"><I>IJavaCompletionProposal</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposalComputer.html" title="interface in org.eclipse.wst.jsdt.ui.text.java"><I>IJavaCompletionProposalComputer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IJavadocCompletionProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java"><I>IJavadocCompletionProcessor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/hover/IJavaEditorTextHover.html" title="interface in org.eclipse.wst.jsdt.ui.text.java.hover"><I>IJavaEditorTextHover</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding"><I>IJavaFoldingPreferenceBlock</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProvider.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding"><I>IJavaFoldingStructureProvider</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding"><I>IJavaFoldingStructureProviderExtension</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text"><I>IJavaScriptColorConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJavaScriptElement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJavaScriptElementDelta</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptElementMapper.html" title="interface in org.eclipse.wst.jsdt.core.refactoring"><I>IJavaScriptElementMapper</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui"><I>IJavaScriptElementSearchConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModel.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJavaScriptModel</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJavaScriptModelMarker</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatus.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJavaScriptModelStatus</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJavaScriptModelStatusConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text"><I>IJavaScriptPartitions</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptProject.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJavaScriptProject</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html" title="interface in org.eclipse.wst.jsdt.core.refactoring"><I>IJavaScriptRefactorings</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html" title="interface in org.eclipse.wst.jsdt.core.search"><I>IJavaScriptSearchConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html" title="interface in org.eclipse.wst.jsdt.core.search"><I>IJavaScriptSearchScope</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJavaScriptUnit</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/IJavaWebNode.html" title="interface in org.eclipse.wst.jsdt.web.ui.views.contentoutline"><I>IJavaWebNode</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDoc.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDoc</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocAllocationExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocAllocationExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocArgumentExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocArgumentExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocArrayQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocArrayQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocArraySingleTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocArraySingleTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocFieldReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocFieldReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocImplicitTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocImplicitTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocMessageSend.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocMessageSend</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocReturnStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocReturnStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocSingleNameReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocSingleNameReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IJsDocSingleTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IJsDocSingleTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJsGlobalScopeContainer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html" title="interface in org.eclipse.wst.jsdt.core"><I>IJsGlobalScopeContainerInitializer</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPage.html" title="interface in org.eclipse.wst.jsdt.ui.wizards"><I>IJsGlobalScopeContainerPage</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPageExtension.html" title="interface in org.eclipse.wst.jsdt.ui.wizards"><I>IJsGlobalScopeContainerPageExtension</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/IJsGlobalScopeContainerPageExtension2.html" title="interface in org.eclipse.wst.jsdt.ui.wizards"><I>IJsGlobalScopeContainerPageExtension2</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/text/IJsPartitions.html" title="interface in org.eclipse.wst.jsdt.web.core.text"><I>IJsPartitions</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/IJsTranslation.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript"><I>IJsTranslation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/IJsTranslator.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript"><I>IJsTranslator</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILabeledStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ILabeledStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IListExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IListExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ILiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILocalDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ILocalDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ILocalVariable.html" title="interface in org.eclipse.wst.jsdt.core"><I>ILocalVariable</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILongLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ILongLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ILongLiteralMinValue.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ILongLiteralMinValue</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ILookupScope.html" title="interface in org.eclipse.wst.jsdt.core"><I>ILookupScope</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IMagicLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IMagicLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IMarkerAnnotation.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IMarkerAnnotation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/IMatchPresentation.html" title="interface in org.eclipse.wst.jsdt.ui.search"><I>IMatchPresentation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IMember.html" title="interface in org.eclipse.wst.jsdt.core"><I>IMember</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IMemberValuePair.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IMemberValuePair</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IMemberValuePairBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom"><I>IMemberValuePairBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html" title="interface in org.eclipse.wst.jsdt.core.util"><I>IModifierConstants</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">ImportDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite.ImportRewriteContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/ImportRewriteSupport.html" title="class in org.eclipse.wst.jsdt.core.infer">ImportRewriteSupport</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/INameReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>INameReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html" title="class in org.eclipse.wst.jsdt.core.formatter">IndentManipulation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/internal/core/index/Index.html" title="class in org.eclipse.wst.jsdt.internal.core.index">Index</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/IndexWorkspaceJob.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">IndexWorkspaceJob</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferEngine.html" title="class in org.eclipse.wst.jsdt.core.infer">InferEngine</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html" title="class in org.eclipse.wst.jsdt.core.infer">InferOptions</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferredAttribute.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredAttribute</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferredMember.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredMember</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferredMethod.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredMethod</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/InferredType.html" title="class in org.eclipse.wst.jsdt.core.dom">InferredType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceManager.html" title="class in org.eclipse.wst.jsdt.core.infer">InferrenceManager</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html" title="interface in org.eclipse.wst.jsdt.core.infer"><I>InferrenceProvider</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceSupportExtension.html" title="class in org.eclipse.wst.jsdt.core.infer">InferrenceSupportExtension</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/InferTypeArgumentsDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">InferTypeArgumentsDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/InfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Initializer.html" title="class in org.eclipse.wst.jsdt.core.dom">Initializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineConstantDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">InlineConstantDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineLocalVariableDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">InlineLocalVariableDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/InlineMethodDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">InlineMethodDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/INormalAnnotation.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>INormalAnnotation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/InstanceofExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">InstanceofExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">InternetExplorerLibInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerUILibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">InternetExplorerUILibInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceFactoryDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">IntroduceFactoryDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceIndirectionDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">IntroduceIndirectionDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/IntroduceParameterDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">IntroduceParameterDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/INullLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>INullLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/INumberLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>INumberLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/InvalidInputException.html" title="class in org.eclipse.wst.jsdt.core.compiler">InvalidInputException</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IObjectLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IObjectLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IObjectLiteralField.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IObjectLiteralField</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IOpenable.html" title="interface in org.eclipse.wst.jsdt.core"><I>IOpenable</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IOperatorExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IOperatorExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IOR_OR_Expression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IOR_OR_Expression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IPackageBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom"><I>IPackageBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IPackageDeclaration.html" title="interface in org.eclipse.wst.jsdt.core"><I>IPackageDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IPackageFragment.html" title="interface in org.eclipse.wst.jsdt.core"><I>IPackageFragment</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core"><I>IPackageFragmentRoot</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IPackagesViewPart.html" title="interface in org.eclipse.wst.jsdt.ui"><I>IPackagesViewPart</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IParameterizedQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IParameterizedQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IParameterizedSingleTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IParameterizedSingleTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IParent.html" title="interface in org.eclipse.wst.jsdt.core"><I>IParent</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IPostfixExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IPostfixExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IPrefixExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IPrefixExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler"><I>IProblem</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IProblemLocation.html" title="interface in org.eclipse.wst.jsdt.ui.text.java"><I>IProblemLocation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IProblemRequestor.html" title="interface in org.eclipse.wst.jsdt.core"><I>IProblemRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IProgramElement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IProgramElement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedAllocationExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IQualifiedAllocationExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedNameReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IQualifiedNameReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedSuperReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IQualifiedSuperReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedThisReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IQualifiedThisReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IQualifiedTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IQualifiedTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/IQueryParticipant.html" title="interface in org.eclipse.wst.jsdt.ui.search"><I>IQueryParticipant</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IQuickAssistProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java"><I>IQuickAssistProcessor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/IQuickFixProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java"><I>IQuickFixProcessor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html" title="interface in org.eclipse.wst.jsdt.ui.refactoring"><I>IRefactoringProcessorIds</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IRegExLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IRegExLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IRegion.html" title="interface in org.eclipse.wst.jsdt.core"><I>IRegion</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IReturnStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IReturnStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/IScanner.html" title="interface in org.eclipse.wst.jsdt.core.compiler"><I>IScanner</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IScriptFileDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IScriptFileDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/ISearchRequestor.html" title="interface in org.eclipse.wst.jsdt.ui.search"><I>ISearchRequestor</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html" title="interface in org.eclipse.wst.jsdt.ui"><I>ISharedImages</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISingleMemberAnnotation.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ISingleMemberAnnotation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISingleNameReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ISingleNameReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISingleTypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ISingleTypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ISourceManipulation.html" title="interface in org.eclipse.wst.jsdt.core"><I>ISourceManipulation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ISourceRange.html" title="interface in org.eclipse.wst.jsdt.core"><I>ISourceRange</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ISourceReference.html" title="interface in org.eclipse.wst.jsdt.core"><I>ISourceReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IStringLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IStringLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IStringLiteralConcatenation.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IStringLiteralConcatenation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISubRoutineStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ISubRoutineStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISuperReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ISuperReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ISwitchStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ISwitchStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html" title="interface in org.eclipse.wst.jsdt.core.compiler"><I>ITerminalSymbols</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IThisReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IThisReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IThrowStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IThrowStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ITrackedNodePosition.html" title="interface in org.eclipse.wst.jsdt.core.dom.rewrite"><I>ITrackedNodePosition</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITrueLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ITrueLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITryStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ITryStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core"><I>IType</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ITypeBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom"><I>ITypeBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITypeDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ITypeDeclaration</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ITypeHierarchy.html" title="interface in org.eclipse.wst.jsdt.core"><I>ITypeHierarchy</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ITypeHierarchyChangedListener.html" title="interface in org.eclipse.wst.jsdt.core"><I>ITypeHierarchyChangedListener</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html" title="interface in org.eclipse.wst.jsdt.ui"><I>ITypeHierarchyViewPart</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITypeParameter.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ITypeParameter</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ITypeParameter.html" title="interface in org.eclipse.wst.jsdt.core"><I>ITypeParameter</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/ITypeReference.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>ITypeReference</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ITypeRoot.html" title="interface in org.eclipse.wst.jsdt.core"><I>ITypeRoot</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IUnaryExpression.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IUnaryExpression</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IUndefinedLiteral.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IUndefinedLiteral</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/IVariableBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom"><I>IVariableBinding</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IWhileStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IWhileStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IWildcard.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IWildcard</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ast/IWithStatement.html" title="interface in org.eclipse.wst.jsdt.core.ast"><I>IWithStatement</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html" title="interface in org.eclipse.wst.jsdt.core"><I>IWorkingCopy</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IWorkingCopyManager.html" title="interface in org.eclipse.wst.jsdt.ui"><I>IWorkingCopyManager</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IWorkingCopyManagerExtension.html" title="interface in org.eclipse.wst.jsdt.ui"><I>IWorkingCopyManagerExtension</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/IWorkingCopyProvider.html" title="interface in org.eclipse.wst.jsdt.ui"><I>IWorkingCopyProvider</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">JavaCapabilityConfigurationPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/java/JavaContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java">JavaContentAssistInvocationContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaElementSorter.html" title="class in org.eclipse.wst.jsdt.ui">JavaElementSorter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptConventions</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementComparator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementImageDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabelProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptLibrariesAction.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptLibrariesAction</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.html" title="class in org.eclipse.wst.jsdt.core.manipulation">JavaScriptManipulation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JavaScriptModelException.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptModelException</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">JavaScriptRefactoringContribution</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">JavaScriptRefactoringDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptSourceFoldersAction.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptSourceFoldersAction</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/JavaScriptSourceViewerConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.text">JavaScriptSourceViewerConfiguration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptSuperTypeAction.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptSuperTypeAction</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html" title="class in org.eclipse.wst.jsdt.ui.text">JavaScriptTextTools</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html" title="class in org.eclipse.wst.jsdt.core.dom">JavaScriptUnit</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/util/JavaScriptUnitSorter.html" title="class in org.eclipse.wst.jsdt.core.util">JavaScriptUnitSorter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterFactoryForJSDT.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline">JFaceNodeAdapterFactoryForJSDT</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterForJs.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline">JFaceNodeAdapterForJs</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript"><I>JsDataTypes</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/JSdoc.html" title="class in org.eclipse.wst.jsdt.core.dom">JSdoc</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/JSdocContentAccess.html" title="class in org.eclipse.wst.jsdt.ui">JSdocContentAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JSDScopeUtil.html" title="class in org.eclipse.wst.jsdt.core">JSDScopeUtil</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JSDTSearchDocumentDelegate.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">JSDTSearchDocumentDelegate</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeContainerInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeVariableInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeVariableInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsIndexManager.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">JsIndexManager</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline">JsJfaceNode</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsNameManglerUtil.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsNameManglerUtil</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/project/JsNature.html" title="class in org.eclipse.wst.jsdt.ui.project">JsNature</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsPathIndexer.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">JsPathIndexer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchDocument.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">JsSearchDocument</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchParticipant.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">JsSearchParticipant</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">JsSearchScope</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchSupport.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">JsSearchSupport</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsTranslation.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapter.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslationAdapter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapterFactory.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslationAdapterFactory</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/LabeledStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">LabeledStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/LibraryLocation.html" title="interface in org.eclipse.wst.jsdt.core.compiler.libraries"><I>LibraryLocation</I></A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/LibrarySuperType.html" title="class in org.eclipse.wst.jsdt.core">LibrarySuperType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/LineComment.html" title="class in org.eclipse.wst.jsdt.core.dom">LineComment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ListExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">ListExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ListRewrite</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/LocalVariableDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">LocalVariableDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/LocalVariableReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">LocalVariableReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/MemberRef.html" title="class in org.eclipse.wst.jsdt.core.dom">MemberRef</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/internal/core/index/MemoryIndex.html" title="class in org.eclipse.wst.jsdt.internal.core.index">MemoryIndex</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Message.html" title="class in org.eclipse.wst.jsdt.core.dom">Message</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/Messages.html" title="class in org.eclipse.wst.jsdt.core">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/libraries/Messages.html" title="class in org.eclipse.wst.jsdt.libraries">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/Messages.html" title="class in org.eclipse.wst.jsdt.ui">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/Messages.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/Messages.html" title="class in org.eclipse.wst.jsdt.web.ui">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/views/contentoutline/Messages.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline">Messages</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/MethodDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">MethodDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">MethodReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html" title="class in org.eclipse.wst.jsdt.core.dom">Modifier</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html" title="class in org.eclipse.wst.jsdt.core.dom">Modifier.ModifierKeyword</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">MoveDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">MoveMethodDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">MoveStaticMembersDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Name.html" title="class in org.eclipse.wst.jsdt.core.dom">Name</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/NamingConventions.html" title="class in org.eclipse.wst.jsdt.core">NamingConventions</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewClassWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewClassWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewContainerWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewContainerWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewElementWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewElementWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewInterfaceWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewInterfaceWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewJavaProjectWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewJavaProjectWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewPackageWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage.ImportsManager</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">NodeHelper</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/NullLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">NullLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/NullSearchDocument.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">NullSearchDocument</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/NumberLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">NumberLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ObjectLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">ObjectLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ObjectLiteralField.html" title="class in org.eclipse.wst.jsdt.core.dom">ObjectLiteralField</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">OverrideIndicatorLabelDecorator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">PackageDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/PackageDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">PackageDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/PackageReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">PackageReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ParameterizedType.html" title="class in org.eclipse.wst.jsdt.core.dom">ParameterizedType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ParenthesizedExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">ParenthesizedExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/PatternQuerySpecification.html" title="class in org.eclipse.wst.jsdt.ui.search">PatternQuerySpecification</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PostfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">PostfixExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PostfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">PostfixExpression.Operator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PrefixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression.Operator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom">PrimitiveType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/PrimitiveType.Code.html" title="class in org.eclipse.wst.jsdt.core.dom">PrimitiveType.Code</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">ProblemsLabelDecorator</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.ProblemsLabelChangedEvent.html" title="class in org.eclipse.wst.jsdt.ui">ProblemsLabelDecorator.ProblemsLabelChangedEvent</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ProgramElement.html" title="class in org.eclipse.wst.jsdt.core.dom">ProgramElement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.html" title="class in org.eclipse.wst.jsdt.ui">ProjectLibraryRoot</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.WorkBenchAdapter.html" title="class in org.eclipse.wst.jsdt.ui">ProjectLibraryRoot.WorkBenchAdapter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/PullUpDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">PullUpDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/PushDownDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">PushDownDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/QualifiedName.html" title="class in org.eclipse.wst.jsdt.core.dom">QualifiedName</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/QualifiedType.html" title="class in org.eclipse.wst.jsdt.core.dom">QualifiedType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/search/QuerySpecification.html" title="class in org.eclipse.wst.jsdt.ui.search">QuerySpecification</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/ReconcileContext.html" title="class in org.eclipse.wst.jsdt.core.compiler">ReconcileContext</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/RefactoringSupport.html" title="class in org.eclipse.wst.jsdt.core.infer">RefactoringSupport</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/RegularExpressionLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">RegularExpressionLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">RenameJavaScriptElementDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameLocalVariableDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">RenameLocalVariableDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameResourceDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">RenameResourceDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/RenameTypeArguments.html" title="class in org.eclipse.wst.jsdt.core.refactoring">RenameTypeArguments</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/infer/ResolutionConfiguration.html" title="class in org.eclipse.wst.jsdt.core.infer">ResolutionConfiguration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ReturnStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ReturnStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchDocument.html" title="class in org.eclipse.wst.jsdt.core.search">SearchDocument</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search">SearchEngine</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchMatch.html" title="class in org.eclipse.wst.jsdt.core.search">SearchMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchParticipant.html" title="class in org.eclipse.wst.jsdt.core.search">SearchParticipant</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/SearchRequestor.html" title="class in org.eclipse.wst.jsdt.core.search">SearchRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/SetupProjectsWizzard.html" title="class in org.eclipse.wst.jsdt.web.ui">SetupProjectsWizzard</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SimpleName.html" title="class in org.eclipse.wst.jsdt.core.dom">SimpleName</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SimplePropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom">SimplePropertyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SimpleType.html" title="class in org.eclipse.wst.jsdt.core.dom">SimpleType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">SingleVariableDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/ui/StandardJavaScriptElementContentProvider.html" title="class in org.eclipse.wst.jsdt.ui">StandardJavaScriptElementContentProvider</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Statement.html" title="class in org.eclipse.wst.jsdt.core.dom">Statement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/StringLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">StringLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/StructuralPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom">StructuralPropertyDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.html" title="class in org.eclipse.wst.jsdt.web.ui">StructuredTextViewerConfigurationJSDT</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html" title="class in org.eclipse.wst.jsdt.web.ui">StructuredTextViewerConfigurationJSDT.externalTypeExtension</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperConstructorInvocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SuperFieldAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperFieldAccess</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperMethodInvocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SwitchCase.html" title="class in org.eclipse.wst.jsdt.core.dom">SwitchCase</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/SwitchStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">SwitchStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">SystemLibraryLocation</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html" title="class in org.eclipse.wst.jsdt.core.dom">TagElement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/TargetSourceRangeComputer.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">TargetSourceRangeComputer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/TargetSourceRangeComputer.SourceRange.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">TargetSourceRangeComputer.SourceRange</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TextElement.html" title="class in org.eclipse.wst.jsdt.core.dom">TextElement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ThisExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">ThisExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/ThrowStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ThrowStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core">ToolFactory</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TryStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">TryStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/Type.html" title="class in org.eclipse.wst.jsdt.core.dom">Type</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">TypeDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclarationStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeDeclarationStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TypeLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeNameMatch.html" title="class in org.eclipse.wst.jsdt.core.search">TypeNameMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeNameMatchRequestor.html" title="class in org.eclipse.wst.jsdt.core.search">TypeNameMatchRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeNameRequestor.html" title="class in org.eclipse.wst.jsdt.core.search">TypeNameRequestor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/TypeParameter.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeParameter</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeParameterDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">TypeParameterDeclarationMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeParameterReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">TypeParameterReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/search/TypeReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">TypeReferenceMatch</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/UndefinedLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">UndefinedLiteral</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/UnimplementedException.html" title="class in org.eclipse.wst.jsdt.core">UnimplementedException</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/UseSupertypeDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">UseSupertypeDescriptor</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/Util.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">Util</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html" title="class in org.eclipse.wst.jsdt.core.compiler">ValidationParticipant</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclaration</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationExpression</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationFragment.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationFragment</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/ui/WebProjectJsGlobalScopeUIInitializer.html" title="class in org.eclipse.wst.jsdt.web.ui">WebProjectJsGlobalScopeUIInitializer</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/web/core/javascript/WebRootFinder.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">WebRootFinder</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/WhileStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">WhileStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/WildcardType.html" title="class in org.eclipse.wst.jsdt.core.dom">WildcardType</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/dom/WithStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">WithStatement</A>
-<BR>
-<A HREF="org/eclipse/wst/jsdt/core/WorkingCopyOwner.html" title="class in org.eclipse.wst.jsdt.core">WorkingCopyOwner</A>
-<BR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/constant-values.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/constant-values.html
deleted file mode 100644
index 342c0516..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/constant-values.html
+++ /dev/null
@@ -1,18218 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc (build 1.5.0_12) on Fri May 30 11:16:07 CDT 2008 -->
-<TITLE>
-Constant Field Values
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="Constant Field Values";
-}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-
-</HEAD>
-
-<BODY BGCOLOR="white" onload="windowTitle();">
-
-
-<!-- ========= START OF TOP NAVBAR ======= -->
-<A NAME="navbar_top"><!-- --></A>
-<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
-<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
-<TR>
-<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
-<A NAME="navbar_top_firstrow"><!-- --></A>
-<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
- <TR ALIGN="center" VALIGN="top">
- <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
- <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
- <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
- <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
- <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
- <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
- <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
- <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
- </TR>
-</TABLE>
-</TD>
-<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
-</EM>
-</TD>
-</TR>
-
-<TR>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
-&nbsp;PREV&nbsp;
-&nbsp;NEXT</FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
-&nbsp;<SCRIPT type="text/javascript">
- <!--
- if(window==top) {
- document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
- }
- //-->
-</SCRIPT>
-<NOSCRIPT>
- <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
-</NOSCRIPT>
-
-
-</FONT></TD>
-</TR>
-</TABLE>
-<A NAME="skip-navbar_top"></A>
-<!-- ========= END OF TOP NAVBAR ========= -->
-
-<HR>
-<CENTER>
-<H1>
-Constant Field Values</H1>
-</CENTER>
-<HR SIZE="4" NOSHADE>
-<B>Contents</B><UL>
-<LI><A HREF="#org.eclipse">org.eclipse.*</A>
-</UL>
-
-<A NAME="org.eclipse"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left"><FONT SIZE="+2">
-org.eclipse.*</FONT></TH>
-</TR>
-</TABLE>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/CompletionContext.html" title="class in org.eclipse.wst.jsdt.core">CompletionContext</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionContext.TOKEN_KIND_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionContext.html#TOKEN_KIND_NAME">TOKEN_KIND_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionContext.TOKEN_KIND_STRING_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionContext.html#TOKEN_KIND_STRING_LITERAL">TOKEN_KIND_STRING_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionContext.TOKEN_KIND_UNKNOWN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionContext.html#TOKEN_KIND_UNKNOWN">TOKEN_KIND_UNKNOWN</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/CompletionFlags.html" title="class in org.eclipse.wst.jsdt.core">CompletionFlags</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionFlags.Default"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionFlags.html#Default">Default</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionFlags.StaticImport"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionFlags.html#StaticImport">StaticImport</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.ANNOTATION_ATTRIBUTE_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#ANNOTATION_ATTRIBUTE_REF">ANNOTATION_ATTRIBUTE_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>13</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.ANONYMOUS_CLASS_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#ANONYMOUS_CLASS_DECLARATION">ANONYMOUS_CLASS_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.FIELD_IMPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#FIELD_IMPORT">FIELD_IMPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>21</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.FIELD_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#FIELD_REF">FIELD_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.JSDOC_BLOCK_TAG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_BLOCK_TAG">JSDOC_BLOCK_TAG</A></CODE></TD>
-<TD ALIGN="right"><CODE>19</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.JSDOC_FIELD_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_FIELD_REF">JSDOC_FIELD_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>14</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.JSDOC_INLINE_TAG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_INLINE_TAG">JSDOC_INLINE_TAG</A></CODE></TD>
-<TD ALIGN="right"><CODE>20</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.JSDOC_METHOD_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_METHOD_REF">JSDOC_METHOD_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>15</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.JSDOC_PARAM_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_PARAM_REF">JSDOC_PARAM_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>18</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.JSDOC_TYPE_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_TYPE_REF">JSDOC_TYPE_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.JSDOC_VALUE_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_VALUE_REF">JSDOC_VALUE_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>17</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.KEYWORD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#KEYWORD">KEYWORD</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.LABEL_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#LABEL_REF">LABEL_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.LOCAL_VARIABLE_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#LOCAL_VARIABLE_REF">LOCAL_VARIABLE_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#METHOD_DECLARATION">METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>7</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.METHOD_IMPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#METHOD_IMPORT">METHOD_IMPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>22</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.METHOD_NAME_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#METHOD_NAME_REFERENCE">METHOD_NAME_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>12</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.METHOD_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#METHOD_REF">METHOD_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>6</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.PACKAGE_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#PACKAGE_REF">PACKAGE_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.POTENTIAL_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#POTENTIAL_METHOD_DECLARATION">POTENTIAL_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>11</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.TYPE_IMPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#TYPE_IMPORT">TYPE_IMPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>23</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.TYPE_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#TYPE_REF">TYPE_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>9</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.CompletionProposal.VARIABLE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/CompletionProposal.html#VARIABLE_DECLARATION">VARIABLE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>10</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/ElementChangedEvent.html" title="class in org.eclipse.wst.jsdt.core">ElementChangedEvent</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ElementChangedEvent.POST_CHANGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ElementChangedEvent.html#POST_CHANGE">POST_CHANGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ElementChangedEvent.POST_RECONCILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ElementChangedEvent.html#POST_RECONCILE">POST_RECONCILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccAbstract"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccAbstract">AccAbstract</A></CODE></TD>
-<TD ALIGN="right"><CODE>1024</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccAnnotation">AccAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>8192</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccBridge"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccBridge">AccBridge</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccDefault"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccDefault">AccDefault</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccDeprecated"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccDeprecated">AccDeprecated</A></CODE></TD>
-<TD ALIGN="right"><CODE>1048576</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccEnum"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccEnum">AccEnum</A></CODE></TD>
-<TD ALIGN="right"><CODE>16384</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccFinal"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccFinal">AccFinal</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccInterface"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccInterface">AccInterface</A></CODE></TD>
-<TD ALIGN="right"><CODE>512</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccNative"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccNative">AccNative</A></CODE></TD>
-<TD ALIGN="right"><CODE>256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccPrivate"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccPrivate">AccPrivate</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccProtected"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccProtected">AccProtected</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccPublic"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccPublic">AccPublic</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccStatic"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccStatic">AccStatic</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccStrictfp"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccStrictfp">AccStrictfp</A></CODE></TD>
-<TD ALIGN="right"><CODE>2048</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccSuper"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccSuper">AccSuper</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccSynchronized"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccSynchronized">AccSynchronized</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccSynthetic"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccSynthetic">AccSynthetic</A></CODE></TD>
-<TD ALIGN="right"><CODE>4096</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccTransient"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccTransient">AccTransient</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccVarargs"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccVarargs">AccVarargs</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Flags.AccVolatile"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Flags.html#AccVolatile">AccVolatile</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IAccessRule.html" title="interface in org.eclipse.wst.jsdt.core">IAccessRule</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IAccessRule.IGNORE_IF_BETTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IAccessRule.html#IGNORE_IF_BETTER">IGNORE_IF_BETTER</A></CODE></TD>
-<TD ALIGN="right"><CODE>256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IAccessRule.K_ACCESSIBLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IAccessRule.html#K_ACCESSIBLE">K_ACCESSIBLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IAccessRule.K_DISCOURAGED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IAccessRule.html#K_DISCOURAGED">K_DISCOURAGED</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IAccessRule.K_NON_ACCESSIBLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IAccessRule.html#K_NON_ACCESSIBLE">K_NON_ACCESSIBLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IIncludePathAttribute.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathAttribute</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IIncludePathAttribute.JSDOC_LOCATION_ATTRIBUTE_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IIncludePathAttribute.html#JSDOC_LOCATION_ATTRIBUTE_NAME">JSDOC_LOCATION_ATTRIBUTE_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"javadoc_location"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IIncludePathAttribute.OPTIONAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IIncludePathAttribute.html#OPTIONAL">OPTIONAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"optional"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathEntry</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IIncludePathEntry.CPE_CONTAINER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_CONTAINER">CPE_CONTAINER</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IIncludePathEntry.CPE_LIBRARY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_LIBRARY">CPE_LIBRARY</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IIncludePathEntry.CPE_PROJECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_PROJECT">CPE_PROJECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IIncludePathEntry.CPE_SOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_SOURCE">CPE_SOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IIncludePathEntry.CPE_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_VARIABLE">CPE_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.CLASS_FILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#CLASS_FILE">CLASS_FILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>6</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#FIELD">FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.IMPORT_CONTAINER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#IMPORT_CONTAINER">IMPORT_CONTAINER</A></CODE></TD>
-<TD ALIGN="right"><CODE>12</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.IMPORT_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#IMPORT_DECLARATION">IMPORT_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>13</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#INITIALIZER">INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>10</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.JAVASCRIPT_MODEL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#JAVASCRIPT_MODEL">JAVASCRIPT_MODEL</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.JAVASCRIPT_PROJECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#JAVASCRIPT_PROJECT">JAVASCRIPT_PROJECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.JAVASCRIPT_UNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#JAVASCRIPT_UNIT">JAVASCRIPT_UNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.LOCAL_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#LOCAL_VARIABLE">LOCAL_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>14</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#METHOD">METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>9</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.PACKAGE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#PACKAGE_DECLARATION">PACKAGE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>11</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.PACKAGE_FRAGMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#PACKAGE_FRAGMENT">PACKAGE_FRAGMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.PACKAGE_FRAGMENT_ROOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#PACKAGE_FRAGMENT_ROOT">PACKAGE_FRAGMENT_ROOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#TYPE">TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>7</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElement.TYPE_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#TYPE_PARAMETER">TYPE_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>15</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElementDelta</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.ADDED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#ADDED">ADDED</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.CHANGED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#CHANGED">CHANGED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_ADDED_TO_CLASSPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_ADDED_TO_CLASSPATH">F_ADDED_TO_CLASSPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_ARCHIVE_CONTENT_CHANGED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_ARCHIVE_CONTENT_CHANGED">F_ARCHIVE_CONTENT_CHANGED</A></CODE></TD>
-<TD ALIGN="right"><CODE>32768</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_AST_AFFECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_AST_AFFECTED">F_AST_AFFECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>524288</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_CATEGORIES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_CATEGORIES">F_CATEGORIES</A></CODE></TD>
-<TD ALIGN="right"><CODE>1048576</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_CHILDREN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_CHILDREN">F_CHILDREN</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_CLOSED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_CLOSED">F_CLOSED</A></CODE></TD>
-<TD ALIGN="right"><CODE>1024</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_CONTENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_CONTENT">F_CONTENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_FINE_GRAINED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_FINE_GRAINED">F_FINE_GRAINED</A></CODE></TD>
-<TD ALIGN="right"><CODE>16384</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_INCLUDEPATH_CHANGED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_INCLUDEPATH_CHANGED">F_INCLUDEPATH_CHANGED</A></CODE></TD>
-<TD ALIGN="right"><CODE>131072</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_MODIFIERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_MODIFIERS">F_MODIFIERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_MOVED_FROM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_MOVED_FROM">F_MOVED_FROM</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_MOVED_TO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_MOVED_TO">F_MOVED_TO</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_OPENED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_OPENED">F_OPENED</A></CODE></TD>
-<TD ALIGN="right"><CODE>512</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_PRIMARY_RESOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_PRIMARY_RESOURCE">F_PRIMARY_RESOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>262144</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_PRIMARY_WORKING_COPY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_PRIMARY_WORKING_COPY">F_PRIMARY_WORKING_COPY</A></CODE></TD>
-<TD ALIGN="right"><CODE>65536</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_REMOVED_FROM_CLASSPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_REMOVED_FROM_CLASSPATH">F_REMOVED_FROM_CLASSPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_REORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_REORDER">F_REORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_SOURCEATTACHED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_SOURCEATTACHED">F_SOURCEATTACHED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4096</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_SOURCEDETACHED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_SOURCEDETACHED">F_SOURCEDETACHED</A></CODE></TD>
-<TD ALIGN="right"><CODE>8192</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.F_SUPER_TYPES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#F_SUPER_TYPES">F_SUPER_TYPES</A></CODE></TD>
-<TD ALIGN="right"><CODE>2048</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptElementDelta.REMOVED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#REMOVED">REMOVED</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelMarker</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#ARGUMENTS">ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.BUILDPATH_PROBLEM_MARKER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#BUILDPATH_PROBLEM_MARKER">BUILDPATH_PROBLEM_MARKER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.buildpath_problem"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.CATEGORY_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#CATEGORY_ID">CATEGORY_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"categoryId"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.CYCLE_DETECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#CYCLE_DETECTED">CYCLE_DETECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cycleDetected"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.FLAGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#FLAGS">FLAGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"flags"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#ID">ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"id"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.INCLUDEPATH_FILE_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#INCLUDEPATH_FILE_FORMAT">INCLUDEPATH_FILE_FORMAT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"classpathFileFormat"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.JAVASCRIPT_MODEL_PROBLEM_MARKER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#JAVASCRIPT_MODEL_PROBLEM_MARKER">JAVASCRIPT_MODEL_PROBLEM_MARKER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.problem"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.TASK_MARKER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#TASK_MARKER">TASK_MARKER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.task"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelMarker.TRANSIENT_PROBLEM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#TRANSIENT_PROBLEM">TRANSIENT_PROBLEM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.transient_problem"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.BUILDER_INITIALIZATION_ERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#BUILDER_INITIALIZATION_ERROR">BUILDER_INITIALIZATION_ERROR</A></CODE></TD>
-<TD ALIGN="right"><CODE>990</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.BUILDER_SERIALIZATION_ERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#BUILDER_SERIALIZATION_ERROR">BUILDER_SERIALIZATION_ERROR</A></CODE></TD>
-<TD ALIGN="right"><CODE>991</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.CANNOT_RETRIEVE_ATTACHED_JSDOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#CANNOT_RETRIEVE_ATTACHED_JSDOC">CANNOT_RETRIEVE_ATTACHED_JSDOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>1008</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.CORE_EXCEPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#CORE_EXCEPTION">CORE_EXCEPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>966</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.CP_CONTAINER_PATH_UNBOUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#CP_CONTAINER_PATH_UNBOUND">CP_CONTAINER_PATH_UNBOUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>963</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.CP_VARIABLE_PATH_UNBOUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#CP_VARIABLE_PATH_UNBOUND">CP_VARIABLE_PATH_UNBOUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>965</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.DEPRECATED_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#DEPRECATED_VARIABLE">DEPRECATED_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1010</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.DEVICE_PATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#DEVICE_PATH">DEVICE_PATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>973</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.DISABLED_CP_EXCLUSION_PATTERNS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#DISABLED_CP_EXCLUSION_PATTERNS">DISABLED_CP_EXCLUSION_PATTERNS</A></CODE></TD>
-<TD ALIGN="right"><CODE>1002</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.DISABLED_CP_MULTIPLE_OUTPUT_LOCATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#DISABLED_CP_MULTIPLE_OUTPUT_LOCATIONS">DISABLED_CP_MULTIPLE_OUTPUT_LOCATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>1003</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.DOM_EXCEPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#DOM_EXCEPTION">DOM_EXCEPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>986</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.ELEMENT_DOES_NOT_EXIST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#ELEMENT_DOES_NOT_EXIST">ELEMENT_DOES_NOT_EXIST</A></CODE></TD>
-<TD ALIGN="right"><CODE>969</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.ELEMENT_NOT_ON_CLASSPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#ELEMENT_NOT_ON_CLASSPATH">ELEMENT_NOT_ON_CLASSPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>1006</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.EVALUATION_ERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#EVALUATION_ERROR">EVALUATION_ERROR</A></CODE></TD>
-<TD ALIGN="right"><CODE>992</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INCLUDEPATH_CYCLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INCLUDEPATH_CYCLE">INCLUDEPATH_CYCLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1001</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INCOMPATIBLE_JDK_LEVEL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INCOMPATIBLE_JDK_LEVEL">INCOMPATIBLE_JDK_LEVEL</A></CODE></TD>
-<TD ALIGN="right"><CODE>1004</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INDEX_OUT_OF_BOUNDS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INDEX_OUT_OF_BOUNDS">INDEX_OUT_OF_BOUNDS</A></CODE></TD>
-<TD ALIGN="right"><CODE>980</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_CONTENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_CONTENTS">INVALID_CONTENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>984</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_CP_CONTAINER_ENTRY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_CP_CONTAINER_ENTRY">INVALID_CP_CONTAINER_ENTRY</A></CODE></TD>
-<TD ALIGN="right"><CODE>962</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_DESTINATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_DESTINATION">INVALID_DESTINATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>978</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_ELEMENT_TYPES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_ELEMENT_TYPES">INVALID_ELEMENT_TYPES</A></CODE></TD>
-<TD ALIGN="right"><CODE>967</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_INCLUDEPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_INCLUDEPATH">INVALID_INCLUDEPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>964</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_INCLUDEPATH_FILE_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_INCLUDEPATH_FILE_FORMAT">INVALID_INCLUDEPATH_FILE_FORMAT</A></CODE></TD>
-<TD ALIGN="right"><CODE>1000</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_NAME">INVALID_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>983</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_PACKAGE">INVALID_PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>998</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_PATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_PATH">INVALID_PATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>979</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_PROJECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_PROJECT">INVALID_PROJECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>997</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_RESOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_RESOURCE">INVALID_RESOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>995</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_RESOURCE_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_RESOURCE_TYPE">INVALID_RESOURCE_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>996</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.INVALID_SIBLING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#INVALID_SIBLING">INVALID_SIBLING</A></CODE></TD>
-<TD ALIGN="right"><CODE>993</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.IO_EXCEPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#IO_EXCEPTION">IO_EXCEPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>985</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.NAME_COLLISION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NAME_COLLISION">NAME_COLLISION</A></CODE></TD>
-<TD ALIGN="right"><CODE>977</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.NO_ELEMENTS_TO_PROCESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NO_ELEMENTS_TO_PROCESS">NO_ELEMENTS_TO_PROCESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>968</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.NO_LOCAL_CONTENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NO_LOCAL_CONTENTS">NO_LOCAL_CONTENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>999</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.NULL_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NULL_NAME">NULL_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>982</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.NULL_PATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NULL_PATH">NULL_PATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>970</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.NULL_STRING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NULL_STRING">NULL_STRING</A></CODE></TD>
-<TD ALIGN="right"><CODE>974</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.PATH_OUTSIDE_PROJECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#PATH_OUTSIDE_PROJECT">PATH_OUTSIDE_PROJECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>971</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.READ_ONLY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#READ_ONLY">READ_ONLY</A></CODE></TD>
-<TD ALIGN="right"><CODE>976</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.RELATIVE_PATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#RELATIVE_PATH">RELATIVE_PATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>972</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.TARGET_EXCEPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#TARGET_EXCEPTION">TARGET_EXCEPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>987</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.UNKNOWN_JSDOC_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#UNKNOWN_JSDOC_FORMAT">UNKNOWN_JSDOC_FORMAT</A></CODE></TD>
-<TD ALIGN="right"><CODE>1009</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.UPDATE_CONFLICT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#UPDATE_CONFLICT">UPDATE_CONFLICT</A></CODE></TD>
-<TD ALIGN="right"><CODE>981</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptModelStatusConstants.VALIDATION_FAILURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#VALIDATION_FAILURE">VALIDATION_FAILURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1005</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptUnit.ENABLE_BINDINGS_RECOVERY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#ENABLE_BINDINGS_RECOVERY">ENABLE_BINDINGS_RECOVERY</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptUnit.ENABLE_STATEMENTS_RECOVERY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#ENABLE_STATEMENTS_RECOVERY">ENABLE_STATEMENTS_RECOVERY</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptUnit.FORCE_PROBLEM_DETECTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#FORCE_PROBLEM_DETECTION">FORCE_PROBLEM_DETECTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJavaScriptUnit.NO_AST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#NO_AST">NO_AST</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html" title="interface in org.eclipse.wst.jsdt.core">IJsGlobalScopeContainer</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer.K_APPLICATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html#K_APPLICATION">K_APPLICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer.K_DEFAULT_SYSTEM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html#K_DEFAULT_SYSTEM">K_DEFAULT_SYSTEM</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer.K_SYSTEM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html#K_SYSTEM">K_SYSTEM</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IPackageFragment.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragment</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragment.DEFAULT_PACKAGE_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragment.html#DEFAULT_PACKAGE_NAME">DEFAULT_PACKAGE_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>""</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragmentRoot.DEFAULT_PACKAGEROOT_PATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#DEFAULT_PACKAGEROOT_PATH">DEFAULT_PACKAGEROOT_PATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>""</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragmentRoot.DESTINATION_PROJECT_INCLUDEPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#DESTINATION_PROJECT_INCLUDEPATH">DESTINATION_PROJECT_INCLUDEPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragmentRoot.K_BINARY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#K_BINARY">K_BINARY</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragmentRoot.K_SOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#K_SOURCE">K_SOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragmentRoot.NO_RESOURCE_MODIFICATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#NO_RESOURCE_MODIFICATION">NO_RESOURCE_MODIFICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragmentRoot.ORIGINATING_PROJECT_INCLUDEPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#ORIGINATING_PROJECT_INCLUDEPATH">ORIGINATING_PROJECT_INCLUDEPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragmentRoot.OTHER_REFERRING_PROJECTS_INCLUDEPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#OTHER_REFERRING_PROJECTS_INCLUDEPATH">OTHER_REFERRING_PROJECTS_INCLUDEPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.IPackageFragmentRoot.REPLACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#REPLACE">REPLACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.ABORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#ABORT">ABORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"abort"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.BUILDER_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#BUILDER_ID">BUILDER_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.javascriptValidator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CLEAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CLEAN">CLEAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"clean"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CLEAR_ALL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CLEAR_ALL">CLEAR_ALL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"clear all"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_ARGUMENT_PREFIXES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_ARGUMENT_PREFIXES">CODEASSIST_ARGUMENT_PREFIXES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.argumentPrefixes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_ARGUMENT_SUFFIXES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_ARGUMENT_SUFFIXES">CODEASSIST_ARGUMENT_SUFFIXES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.argumentSuffixes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_CAMEL_CASE_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_CAMEL_CASE_MATCH">CODEASSIST_CAMEL_CASE_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.camelCaseMatch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_DEPRECATION_CHECK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_DEPRECATION_CHECK">CODEASSIST_DEPRECATION_CHECK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.deprecationCheck"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_DISCOURAGED_REFERENCE_CHECK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_DISCOURAGED_REFERENCE_CHECK">CODEASSIST_DISCOURAGED_REFERENCE_CHECK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.discouragedReferenceCheck"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_FIELD_PREFIXES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_FIELD_PREFIXES">CODEASSIST_FIELD_PREFIXES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.fieldPrefixes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_FIELD_SUFFIXES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_FIELD_SUFFIXES">CODEASSIST_FIELD_SUFFIXES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.fieldSuffixes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_FORBIDDEN_REFERENCE_CHECK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_FORBIDDEN_REFERENCE_CHECK">CODEASSIST_FORBIDDEN_REFERENCE_CHECK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.forbiddenReferenceCheck"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_IMPLICIT_QUALIFICATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_IMPLICIT_QUALIFICATION">CODEASSIST_IMPLICIT_QUALIFICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.forceImplicitQualification"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_LOCAL_PREFIXES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_LOCAL_PREFIXES">CODEASSIST_LOCAL_PREFIXES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.localPrefixes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_LOCAL_SUFFIXES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_LOCAL_SUFFIXES">CODEASSIST_LOCAL_SUFFIXES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.localSuffixes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_STATIC_FIELD_PREFIXES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_STATIC_FIELD_PREFIXES">CODEASSIST_STATIC_FIELD_PREFIXES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.staticFieldPrefixes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_STATIC_FIELD_SUFFIXES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_STATIC_FIELD_SUFFIXES">CODEASSIST_STATIC_FIELD_SUFFIXES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.staticFieldSuffixes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_SUGGEST_STATIC_IMPORTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_SUGGEST_STATIC_IMPORTS">CODEASSIST_SUGGEST_STATIC_IMPORTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.suggestStaticImports"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CODEASSIST_VISIBILITY_CHECK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_VISIBILITY_CHECK">CODEASSIST_VISIBILITY_CHECK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.codeComplete.visibilityCheck"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPACT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPACT">COMPACT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"compact"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_CODEGEN_INLINE_JSR_BYTECODE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_CODEGEN_INLINE_JSR_BYTECODE">COMPILER_CODEGEN_INLINE_JSR_BYTECODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.codegen.inlineJsrBytecode"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_CODEGEN_TARGET_PLATFORM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_CODEGEN_TARGET_PLATFORM">COMPILER_CODEGEN_TARGET_PLATFORM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.codegen.targetPlatform"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_CODEGEN_UNUSED_LOCAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_CODEGEN_UNUSED_LOCAL">COMPILER_CODEGEN_UNUSED_LOCAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.codegen.unusedLocal"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_COMPLIANCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_COMPLIANCE">COMPILER_COMPLIANCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.compliance"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_DOC_COMMENT_SUPPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_DOC_COMMENT_SUPPORT">COMPILER_DOC_COMMENT_SUPPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.doc.comment.support"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_LINE_NUMBER_ATTR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_LINE_NUMBER_ATTR">COMPILER_LINE_NUMBER_ATTR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.debug.lineNumber"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_LOCAL_VARIABLE_ATTR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_LOCAL_VARIABLE_ATTR">COMPILER_LOCAL_VARIABLE_ATTR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.debug.localVariable"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_ANNOTATION_SUPER_INTERFACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_ANNOTATION_SUPER_INTERFACE">COMPILER_PB_ANNOTATION_SUPER_INTERFACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.annotationSuperInterface"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_ASSERT_IDENTIFIER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_ASSERT_IDENTIFIER">COMPILER_PB_ASSERT_IDENTIFIER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.assertIdentifier"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_AUTOBOXING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_AUTOBOXING">COMPILER_PB_AUTOBOXING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.autoboxing"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_BOOLEAN_METHOD_THROWING_EXCEPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_BOOLEAN_METHOD_THROWING_EXCEPTION">COMPILER_PB_BOOLEAN_METHOD_THROWING_EXCEPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.booleanMethodThrowingException"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_CHAR_ARRAY_IN_STRING_CONCATENATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_CHAR_ARRAY_IN_STRING_CONCATENATION">COMPILER_PB_CHAR_ARRAY_IN_STRING_CONCATENATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.noImplicitStringConversion"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_DEPRECATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_DEPRECATION">COMPILER_PB_DEPRECATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.deprecation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_DEPRECATION_IN_DEPRECATED_CODE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_DEPRECATION_IN_DEPRECATED_CODE">COMPILER_PB_DEPRECATION_IN_DEPRECATED_CODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.deprecationInDeprecatedCode"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_DEPRECATION_WHEN_OVERRIDING_DEPRECATED_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_DEPRECATION_WHEN_OVERRIDING_DEPRECATED_METHOD">COMPILER_PB_DEPRECATION_WHEN_OVERRIDING_DEPRECATED_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_DISCOURAGED_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_DISCOURAGED_REFERENCE">COMPILER_PB_DISCOURAGED_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.discouragedReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_EMPTY_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_EMPTY_STATEMENT">COMPILER_PB_EMPTY_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.emptyStatement"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_ENUM_IDENTIFIER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_ENUM_IDENTIFIER">COMPILER_PB_ENUM_IDENTIFIER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.enumIdentifier"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_FALLTHROUGH_CASE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FALLTHROUGH_CASE">COMPILER_PB_FALLTHROUGH_CASE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.fallthroughCase"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_FATAL_OPTIONAL_ERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FATAL_OPTIONAL_ERROR">COMPILER_PB_FATAL_OPTIONAL_ERROR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.fatalOptionalError"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_FIELD_HIDING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FIELD_HIDING">COMPILER_PB_FIELD_HIDING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.fieldHiding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_FINAL_PARAMETER_BOUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FINAL_PARAMETER_BOUND">COMPILER_PB_FINAL_PARAMETER_BOUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.finalParameterBound"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_FINALLY_BLOCK_NOT_COMPLETING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FINALLY_BLOCK_NOT_COMPLETING">COMPILER_PB_FINALLY_BLOCK_NOT_COMPLETING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.finallyBlockNotCompletingNormally"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_FORBIDDEN_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FORBIDDEN_REFERENCE">COMPILER_PB_FORBIDDEN_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.forbiddenReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_HIDDEN_CATCH_BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_HIDDEN_CATCH_BLOCK">COMPILER_PB_HIDDEN_CATCH_BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.hiddenCatchBlock"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INCOMPATIBLE_NON_INHERITED_INTERFACE_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INCOMPATIBLE_NON_INHERITED_INTERFACE_METHOD">COMPILER_PB_INCOMPATIBLE_NON_INHERITED_INTERFACE_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INCOMPLETE_ENUM_SWITCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INCOMPLETE_ENUM_SWITCH">COMPILER_PB_INCOMPLETE_ENUM_SWITCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.incompleteEnumSwitch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INCONSISTENT_NULL_CHECK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INCONSISTENT_NULL_CHECK">COMPILER_PB_INCONSISTENT_NULL_CHECK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.inconsistentNullCheck"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INDIRECT_STATIC_ACCESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INDIRECT_STATIC_ACCESS">COMPILER_PB_INDIRECT_STATIC_ACCESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.indirectStaticAccess"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INVALID_IMPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_IMPORT">COMPILER_PB_INVALID_IMPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.invalidImport"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INVALID_JAVADOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC">COMPILER_PB_INVALID_JAVADOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.invalidJavadoc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INVALID_JAVADOC_TAGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC_TAGS">COMPILER_PB_INVALID_JAVADOC_TAGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.invalidJavadocTags"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INVALID_JAVADOC_TAGS__DEPRECATED_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC_TAGS__DEPRECATED_REF">COMPILER_PB_INVALID_JAVADOC_TAGS__DEPRECATED_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INVALID_JAVADOC_TAGS__NOT_VISIBLE_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC_TAGS__NOT_VISIBLE_REF">COMPILER_PB_INVALID_JAVADOC_TAGS__NOT_VISIBLE_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INVALID_JAVADOC_TAGS_VISIBILITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC_TAGS_VISIBILITY">COMPILER_PB_INVALID_JAVADOC_TAGS_VISIBILITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.invalidJavadocTagsVisibility"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_LOCAL_VARIABLE_HIDING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_LOCAL_VARIABLE_HIDING">COMPILER_PB_LOCAL_VARIABLE_HIDING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.localVariableHiding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MAX_PER_UNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MAX_PER_UNIT">COMPILER_PB_MAX_PER_UNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.maxProblemPerUnit"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_METHOD_WITH_CONSTRUCTOR_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_METHOD_WITH_CONSTRUCTOR_NAME">COMPILER_PB_METHOD_WITH_CONSTRUCTOR_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.methodWithConstructorName"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_DEPRECATED_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_DEPRECATED_ANNOTATION">COMPILER_PB_MISSING_DEPRECATED_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingDeprecatedAnnotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_JAVADOC_COMMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_COMMENTS">COMPILER_PB_MISSING_JAVADOC_COMMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingJavadocComments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_JAVADOC_COMMENTS_OVERRIDING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_COMMENTS_OVERRIDING">COMPILER_PB_MISSING_JAVADOC_COMMENTS_OVERRIDING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingJavadocCommentsOverriding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_JAVADOC_COMMENTS_VISIBILITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_COMMENTS_VISIBILITY">COMPILER_PB_MISSING_JAVADOC_COMMENTS_VISIBILITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingJavadocCommentsVisibility"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_JAVADOC_TAGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_TAGS">COMPILER_PB_MISSING_JAVADOC_TAGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingJavadocTags"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_JAVADOC_TAGS_OVERRIDING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_TAGS_OVERRIDING">COMPILER_PB_MISSING_JAVADOC_TAGS_OVERRIDING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingJavadocTagsOverriding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_JAVADOC_TAGS_VISIBILITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_TAGS_VISIBILITY">COMPILER_PB_MISSING_JAVADOC_TAGS_VISIBILITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingJavadocTagsVisibility"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_OVERRIDE_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_OVERRIDE_ANNOTATION">COMPILER_PB_MISSING_OVERRIDE_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingOverrideAnnotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_MISSING_SERIAL_VERSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_SERIAL_VERSION">COMPILER_PB_MISSING_SERIAL_VERSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.missingSerialVersion"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_NO_EFFECT_ASSIGNMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_NO_EFFECT_ASSIGNMENT">COMPILER_PB_NO_EFFECT_ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.noEffectAssignment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_NON_NLS_STRING_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_NON_NLS_STRING_LITERAL">COMPILER_PB_NON_NLS_STRING_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.nonExternalizedStringLiteral"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_NULL_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_NULL_REFERENCE">COMPILER_PB_NULL_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.nullReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_OVERRIDING_METHOD_WITHOUT_SUPER_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_OVERRIDING_METHOD_WITHOUT_SUPER_INVOCATION">COMPILER_PB_OVERRIDING_METHOD_WITHOUT_SUPER_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.overridingMethodWithoutSuperInvocation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_PARAMETER_ASSIGNMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_PARAMETER_ASSIGNMENT">COMPILER_PB_PARAMETER_ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.parameterAssignment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_POSSIBLE_ACCIDENTAL_BOOLEAN_ASSIGNMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_POSSIBLE_ACCIDENTAL_BOOLEAN_ASSIGNMENT">COMPILER_PB_POSSIBLE_ACCIDENTAL_BOOLEAN_ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.possibleAccidentalBooleanAssignment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_POTENTIAL_NULL_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_POTENTIAL_NULL_REFERENCE">COMPILER_PB_POTENTIAL_NULL_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.potentialNullReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_RAW_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_RAW_TYPE_REFERENCE">COMPILER_PB_RAW_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.rawTypeReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_REDUNDANT_NULL_CHECK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_REDUNDANT_NULL_CHECK">COMPILER_PB_REDUNDANT_NULL_CHECK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.redundantNullCheck"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_SPECIAL_PARAMETER_HIDING_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_SPECIAL_PARAMETER_HIDING_FIELD">COMPILER_PB_SPECIAL_PARAMETER_HIDING_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.specialParameterHidingField"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_STATIC_ACCESS_RECEIVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_STATIC_ACCESS_RECEIVER">COMPILER_PB_STATIC_ACCESS_RECEIVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.staticAccessReceiver"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_SUPPRESS_WARNINGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_SUPPRESS_WARNINGS">COMPILER_PB_SUPPRESS_WARNINGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.suppressWarnings"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_SYNTHETIC_ACCESS_EMULATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_SYNTHETIC_ACCESS_EMULATION">COMPILER_PB_SYNTHETIC_ACCESS_EMULATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.syntheticAccessEmulation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_TYPE_PARAMETER_HIDING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_TYPE_PARAMETER_HIDING">COMPILER_PB_TYPE_PARAMETER_HIDING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.typeParameterHiding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNCHECKED_TYPE_OPERATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNCHECKED_TYPE_OPERATION">COMPILER_PB_UNCHECKED_TYPE_OPERATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.uncheckedTypeOperation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNDEFINED_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNDEFINED_FIELD">COMPILER_PB_UNDEFINED_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.undefinedField"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNDOCUMENTED_EMPTY_BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNDOCUMENTED_EMPTY_BLOCK">COMPILER_PB_UNDOCUMENTED_EMPTY_BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.undocumentedEmptyBlock"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNHANDLED_WARNING_TOKEN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNHANDLED_WARNING_TOKEN">COMPILER_PB_UNHANDLED_WARNING_TOKEN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unhandledWarningToken"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNNECESSARY_ELSE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNNECESSARY_ELSE">COMPILER_PB_UNNECESSARY_ELSE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unnecessaryElse"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNNECESSARY_TYPE_CHECK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNNECESSARY_TYPE_CHECK">COMPILER_PB_UNNECESSARY_TYPE_CHECK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unnecessaryTypeCheck"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNQUALIFIED_FIELD_ACCESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNQUALIFIED_FIELD_ACCESS">COMPILER_PB_UNQUALIFIED_FIELD_ACCESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unqualifiedFieldAccess"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNREACHABLE_CODE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNREACHABLE_CODE">COMPILER_PB_UNREACHABLE_CODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unreachableCode"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNSAFE_TYPE_OPERATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNSAFE_TYPE_OPERATION">COMPILER_PB_UNSAFE_TYPE_OPERATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.uncheckedTypeOperation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION">COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedDeclaredThrownException"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_WHEN_OVERRIDING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_WHEN_OVERRIDING">COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_WHEN_OVERRIDING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_IMPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_IMPORT">COMPILER_PB_UNUSED_IMPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedImport"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_LABEL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_LABEL">COMPILER_PB_UNUSED_LABEL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedLabel"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_LOCAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_LOCAL">COMPILER_PB_UNUSED_LOCAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedLocal"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PARAMETER">COMPILER_PB_UNUSED_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedParameter"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_PARAMETER_INCLUDE_DOC_COMMENT_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PARAMETER_INCLUDE_DOC_COMMENT_REFERENCE">COMPILER_PB_UNUSED_PARAMETER_INCLUDE_DOC_COMMENT_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedParameterIncludeDocCommentReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_PARAMETER_WHEN_IMPLEMENTING_ABSTRACT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PARAMETER_WHEN_IMPLEMENTING_ABSTRACT">COMPILER_PB_UNUSED_PARAMETER_WHEN_IMPLEMENTING_ABSTRACT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedParameterWhenImplementingAbstract"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_PARAMETER_WHEN_OVERRIDING_CONCRETE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PARAMETER_WHEN_OVERRIDING_CONCRETE">COMPILER_PB_UNUSED_PARAMETER_WHEN_OVERRIDING_CONCRETE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedParameterWhenOverridingConcrete"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNUSED_PRIVATE_MEMBER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PRIVATE_MEMBER">COMPILER_PB_UNUSED_PRIVATE_MEMBER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unusedPrivateMember"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_VARARGS_ARGUMENT_NEED_CAST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_VARARGS_ARGUMENT_NEED_CAST">COMPILER_PB_VARARGS_ARGUMENT_NEED_CAST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.varargsArgumentNeedCast"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_SOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_SOURCE">COMPILER_SOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.source"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_SOURCE_FILE_ATTR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_SOURCE_FILE_ATTR">COMPILER_SOURCE_FILE_ATTR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.debug.sourceFile"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_TASK_CASE_SENSITIVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_CASE_SENSITIVE">COMPILER_TASK_CASE_SENSITIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.taskCaseSensitive"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_TASK_PRIORITIES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_PRIORITIES">COMPILER_TASK_PRIORITIES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.taskPriorities"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_TASK_PRIORITY_HIGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_PRIORITY_HIGH">COMPILER_TASK_PRIORITY_HIGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"HIGH"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_TASK_PRIORITY_LOW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_PRIORITY_LOW">COMPILER_TASK_PRIORITY_LOW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"LOW"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_TASK_PRIORITY_NORMAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_PRIORITY_NORMAL">COMPILER_TASK_PRIORITY_NORMAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"NORMAL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_TASK_TAGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_TAGS">COMPILER_TASK_TAGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.taskTags"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.COMPUTE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPUTE">COMPUTE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"compute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_CIRCULAR_CLASSPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_CIRCULAR_CLASSPATH">CORE_CIRCULAR_CLASSPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.circularClasspath"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_ENABLE_CLASSPATH_EXCLUSION_PATTERNS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_ENABLE_CLASSPATH_EXCLUSION_PATTERNS">CORE_ENABLE_CLASSPATH_EXCLUSION_PATTERNS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.classpath.exclusionPatterns"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_ENABLE_CLASSPATH_MULTIPLE_OUTPUT_LOCATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_ENABLE_CLASSPATH_MULTIPLE_OUTPUT_LOCATIONS">CORE_ENABLE_CLASSPATH_MULTIPLE_OUTPUT_LOCATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.classpath.multipleOutputLocations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_ENCODING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_ENCODING">CORE_ENCODING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.encoding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_INCOMPATIBLE_JDK_LEVEL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_INCOMPATIBLE_JDK_LEVEL">CORE_INCOMPATIBLE_JDK_LEVEL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.incompatibleJDKLevel"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_INCOMPLETE_CLASSPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_INCOMPLETE_CLASSPATH">CORE_INCOMPLETE_CLASSPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.incompleteClasspath"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_JAVA_BUILD_CLEAN_OUTPUT_FOLDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_CLEAN_OUTPUT_FOLDER">CORE_JAVA_BUILD_CLEAN_OUTPUT_FOLDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.builder.cleanOutputFolder"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_JAVA_BUILD_DUPLICATE_RESOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_DUPLICATE_RESOURCE">CORE_JAVA_BUILD_DUPLICATE_RESOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.builder.duplicateResourceTask"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_JAVA_BUILD_INVALID_CLASSPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_INVALID_CLASSPATH">CORE_JAVA_BUILD_INVALID_CLASSPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.builder.invalidClasspath"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_JAVA_BUILD_ORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_ORDER">CORE_JAVA_BUILD_ORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.computeJavaBuildOrder"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_JAVA_BUILD_RECREATE_MODIFIED_CLASS_FILES_IN_OUTPUT_FOLDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_RECREATE_MODIFIED_CLASS_FILES_IN_OUTPUT_FOLDER">CORE_JAVA_BUILD_RECREATE_MODIFIED_CLASS_FILES_IN_OUTPUT_FOLDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.builder.recreateModifiedClassFileInOutputFolder"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.CORE_JAVA_BUILD_RESOURCE_COPY_FILTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_RESOURCE_COPY_FILTER">CORE_JAVA_BUILD_RESOURCE_COPY_FILTER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.builder.resourceCopyExclusionFilter"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT">DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"default"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.DEFAULT_TASK_PRIORITIES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT_TASK_PRIORITIES">DEFAULT_TASK_PRIORITIES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"NORMAL,HIGH,NORMAL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.DEFAULT_TASK_PRIORITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT_TASK_PRIORITY">DEFAULT_TASK_PRIORITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"NORMAL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.DEFAULT_TASK_TAG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT_TASK_TAG">DEFAULT_TASK_TAG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TODO"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.DEFAULT_TASK_TAGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT_TASK_TAGS">DEFAULT_TASK_TAGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TODO,FIXME,XXX"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.DISABLED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DISABLED">DISABLED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"disabled"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.DO_NOT_GENERATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DO_NOT_GENERATE">DO_NOT_GENERATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"do not generate"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.DO_NOT_INSERT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DO_NOT_INSERT">DO_NOT_INSERT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"do not insert"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.ENABLED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#ENABLED">ENABLED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"enabled"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.ERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#ERROR">ERROR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"error"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.GENERATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#GENERATE">GENERATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"generate"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.IGNORE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#IGNORE">IGNORE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ignore"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.INSERT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#INSERT">INSERT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"insert"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.IS_ECMASCRIPT4"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;boolean</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#IS_ECMASCRIPT4">IS_ECMASCRIPT4</A></CODE></TD>
-<TD ALIGN="right"><CODE>false</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.JAVA_SOURCE_CONTENT_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#JAVA_SOURCE_CONTENT_TYPE">JAVA_SOURCE_CONTENT_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.jsSource"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.LOOSE_VAR_DECL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#LOOSE_VAR_DECL">LOOSE_VAR_DECL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.looseVarDecleration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.MODEL_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#MODEL_ID">MODEL_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.jsmodel"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.NATURE_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#NATURE_ID">NATURE_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.jsNature"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.NEVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#NEVER">NEVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"never"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.NORMAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#NORMAL">NORMAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"normal"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.OPTIMIZE_OUT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#OPTIMIZE_OUT">OPTIMIZE_OUT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"optimize out"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.OPTIONAL_SEMICOLON"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#OPTIONAL_SEMICOLON">OPTIONAL_SEMICOLON</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.optionalSemicolon"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.PLUGIN_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#PLUGIN_ID">PLUGIN_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.PRESERVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#PRESERVE">PRESERVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"preserve"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.PRESERVE_ONE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#PRESERVE_ONE">PRESERVE_ONE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"preserve one"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#PRIVATE">PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"private"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#PROTECTED">PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"protected"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.PUBLIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#PUBLIC">PUBLIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"public"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.SPACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#SPACE">SPACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"space"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.TAB"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#TAB">TAB</A></CODE></TD>
-<TD ALIGN="right"><CODE>"tab"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.TIMEOUT_FOR_PARAMETER_NAME_FROM_ATTACHED_JAVADOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#TIMEOUT_FOR_PARAMETER_NAME_FROM_ATTACHED_JAVADOC">TIMEOUT_FOR_PARAMETER_NAME_FROM_ATTACHED_JAVADOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.timeoutForParameterNameFromAttachedJavadoc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.UNRESOLVED_FIELD_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#UNRESOLVED_FIELD_REFERENCE">UNRESOLVED_FIELD_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unresolvedFieldReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.UNRESOLVED_METHOD_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#UNRESOLVED_METHOD_REFERENCE">UNRESOLVED_METHOD_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unresolvedMethodReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.UNRESOLVED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#UNRESOLVED_TYPE_REFERENCE">UNRESOLVED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.compiler.problem.unresolvedTypeReference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.USER_LIBRARY_CONTAINER_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#USER_LIBRARY_CONTAINER_ID">USER_LIBRARY_CONTAINER_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.USER_LIBRARY"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.VERSION_1_1"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#VERSION_1_1">VERSION_1_1</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1.1"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.VERSION_1_2"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#VERSION_1_2">VERSION_1_2</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1.2"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.VERSION_1_3"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#VERSION_1_3">VERSION_1_3</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1.3"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.VERSION_1_4"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#VERSION_1_4">VERSION_1_4</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1.4"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.VERSION_1_5"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#VERSION_1_5">VERSION_1_5</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1.5"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.VERSION_1_6"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#VERSION_1_6">VERSION_1_6</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1.6"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.VERSION_1_7"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#VERSION_1_7">VERSION_1_7</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1.7"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JavaScriptCore.WARNING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#WARNING">WARNING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"warning"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeContainerInitializer</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer.ATTRIBUTE_NOT_SUPPORTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#ATTRIBUTE_NOT_SUPPORTED">ATTRIBUTE_NOT_SUPPORTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer.ATTRIBUTE_READ_ONLY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#ATTRIBUTE_READ_ONLY">ATTRIBUTE_READ_ONLY</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/LibrarySuperType.html" title="class in org.eclipse.wst.jsdt.core">LibrarySuperType</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.LibrarySuperType.SUPER_TYPE_CONTAINER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/LibrarySuperType.html#SUPER_TYPE_CONTAINER">SUPER_TYPE_CONTAINER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.superType.container"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.LibrarySuperType.SUPER_TYPE_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/LibrarySuperType.html#SUPER_TYPE_NAME">SUPER_TYPE_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.superType.name"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.<A HREF="org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.ARRAY_TYPE_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#ARRAY_TYPE_SIGNATURE">ARRAY_TYPE_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.BASE_TYPE_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#BASE_TYPE_SIGNATURE">BASE_TYPE_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_ANY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_ANY">C_ANY</A></CODE></TD>
-<TD ALIGN="right"><CODE>65</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_ARRAY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_ARRAY">C_ARRAY</A></CODE></TD>
-<TD ALIGN="right"><CODE>91</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_BOOLEAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_BOOLEAN">C_BOOLEAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>90</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_BYTE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_BYTE">C_BYTE</A></CODE></TD>
-<TD ALIGN="right"><CODE>66</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_CAPTURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_CAPTURE">C_CAPTURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>33</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_CHAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_CHAR">C_CHAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>67</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_COLON"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_COLON">C_COLON</A></CODE></TD>
-<TD ALIGN="right"><CODE>58</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_COMPILATION_UNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_COMPILATION_UNIT">C_COMPILATION_UNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>88</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_DOLLAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_DOLLAR">C_DOLLAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>36</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_DOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_DOT">C_DOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>46</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_DOUBLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_DOUBLE">C_DOUBLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>68</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_EXCEPTION_START"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_EXCEPTION_START">C_EXCEPTION_START</A></CODE></TD>
-<TD ALIGN="right"><CODE>94</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_EXTENDS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_EXTENDS">C_EXTENDS</A></CODE></TD>
-<TD ALIGN="right"><CODE>43</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_FLOAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_FLOAT">C_FLOAT</A></CODE></TD>
-<TD ALIGN="right"><CODE>70</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_GENERIC_END"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_GENERIC_END">C_GENERIC_END</A></CODE></TD>
-<TD ALIGN="right"><CODE>62</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_GENERIC_START"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_GENERIC_START">C_GENERIC_START</A></CODE></TD>
-<TD ALIGN="right"><CODE>60</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_INT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_INT">C_INT</A></CODE></TD>
-<TD ALIGN="right"><CODE>73</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_LONG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_LONG">C_LONG</A></CODE></TD>
-<TD ALIGN="right"><CODE>74</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_NAME_END"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_NAME_END">C_NAME_END</A></CODE></TD>
-<TD ALIGN="right"><CODE>59</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_PARAM_END"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_PARAM_END">C_PARAM_END</A></CODE></TD>
-<TD ALIGN="right"><CODE>41</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_PARAM_START"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_PARAM_START">C_PARAM_START</A></CODE></TD>
-<TD ALIGN="right"><CODE>40</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_RESOLVED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_RESOLVED">C_RESOLVED</A></CODE></TD>
-<TD ALIGN="right"><CODE>76</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_SEMICOLON"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_SEMICOLON">C_SEMICOLON</A></CODE></TD>
-<TD ALIGN="right"><CODE>59</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_SHORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_SHORT">C_SHORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>83</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_STAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_STAR">C_STAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>42</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_SUPER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_SUPER">C_SUPER</A></CODE></TD>
-<TD ALIGN="right"><CODE>45</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_TYPE_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_TYPE_VARIABLE">C_TYPE_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>84</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_UNRESOLVED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_UNRESOLVED">C_UNRESOLVED</A></CODE></TD>
-<TD ALIGN="right"><CODE>81</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.C_VOID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;char</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#C_VOID">C_VOID</A></CODE></TD>
-<TD ALIGN="right"><CODE>86</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.CAPTURE_TYPE_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#CAPTURE_TYPE_SIGNATURE">CAPTURE_TYPE_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>6</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.CLASS_TYPE_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#CLASS_TYPE_SIGNATURE">CLASS_TYPE_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_ANY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_ANY">SIG_ANY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"A"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_BOOLEAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_BOOLEAN">SIG_BOOLEAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Z"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_BYTE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_BYTE">SIG_BYTE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"B"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_CHAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_CHAR">SIG_CHAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"C"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_COMPILATION_UNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_COMPILATION_UNIT">SIG_COMPILATION_UNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"X"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_DOUBLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_DOUBLE">SIG_DOUBLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"D"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_FLOAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_FLOAT">SIG_FLOAT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"F"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_INT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_INT">SIG_INT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"I"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_LONG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_LONG">SIG_LONG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"J"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_SHORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_SHORT">SIG_SHORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"S"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.SIG_VOID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#SIG_VOID">SIG_VOID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"V"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.TYPE_VARIABLE_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#TYPE_VARIABLE_SIGNATURE">TYPE_VARIABLE_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.Signature.WILDCARD_TYPE_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/Signature.html#WILDCARD_TYPE_SIGNATURE">WILDCARD_TYPE_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.ast.<A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ABSTRACT_FUNCTION_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ABSTRACT_FUNCTION_DECLARATION">ABSTRACT_FUNCTION_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ABSTRACT_VARIABLE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ABSTRACT_VARIABLE_DECLARATION">ABSTRACT_VARIABLE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ALLOCATION_EXPRESSION">ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.AND_AND_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#AND_AND_EXPRESSION">AND_AND_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ANNOTATION">ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ANNOTATION_FUNCTION_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ANNOTATION_FUNCTION_DECLARATION">ANNOTATION_FUNCTION_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>6</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ARGUMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARGUMENT">ARGUMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>7</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ARRAY_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_ALLOCATION_EXPRESSION">ARRAY_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_INITIALIZER">ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>9</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ARRAY_QUALIFIED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_QUALIFIED_TYPE_REFERENCE">ARRAY_QUALIFIED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>10</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ARRAY_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_REFERENCE">ARRAY_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>11</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ARRAY_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_TYPE_REFERENCE">ARRAY_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>12</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ASSERT_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ASSERT_STATEMENT">ASSERT_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>13</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.ASSIGNMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#ASSIGNMENT">ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>14</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.AST_NODE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#AST_NODE">AST_NODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.BINARY_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#BINARY_EXPRESSION">BINARY_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>15</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#BLOCK">BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.BRANCH_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#BRANCH_STATEMENT">BRANCH_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>17</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.BREAK_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#BREAK_STATEMENT">BREAK_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>18</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.CASE_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#CASE_STATEMENT">CASE_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>19</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.CAST_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#CAST_EXPRESSION">CAST_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>20</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.CHAR_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#CHAR_LITERAL">CHAR_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>21</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.CL_INIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#CL_INIT">CL_INIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>116</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.CLASS_LITERAL_ACCESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#CLASS_LITERAL_ACCESS">CLASS_LITERAL_ACCESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>115</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.COMBINED_BINARY_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#COMBINED_BINARY_EXPRESSION">COMBINED_BINARY_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>22</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.COMPOUND_ASSIGNMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#COMPOUND_ASSIGNMENT">COMPOUND_ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>23</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.CONDITIONAL_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#CONDITIONAL_EXPRESSION">CONDITIONAL_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>24</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#CONSTRUCTOR_DECLARATION">CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>25</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.CONTINUE_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#CONTINUE_STATEMENT">CONTINUE_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>26</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.DO_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#DO_STATEMENT">DO_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>27</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.DOUBLE_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#DOUBLE_LITERAL">DOUBLE_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>28</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.EMPTY_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#EMPTY_EXPRESSION">EMPTY_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>29</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.EMPTY_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#EMPTY_STATEMENT">EMPTY_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>30</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.EQUAL_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#EQUAL_EXPRESSION">EQUAL_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>31</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.EXPLICIT_CONSTRUCTOR_CALL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#EXPLICIT_CONSTRUCTOR_CALL">EXPLICIT_CONSTRUCTOR_CALL</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#EXPRESSION">EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>33</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.EXTENDED_STRING_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#EXTENDED_STRING_LITERAL">EXTENDED_STRING_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>34</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FALSE_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FALSE_LITERAL">FALSE_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>35</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FIELD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FIELD_DECLARATION">FIELD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>36</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FIELD_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FIELD_REFERENCE">FIELD_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>37</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FLOAT_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FLOAT_LITERAL">FLOAT_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>38</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FOR_EACH_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FOR_EACH_STATEMENT">FOR_EACH_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>39</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FOR_IN_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FOR_IN_STATEMENT">FOR_IN_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>40</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FOR_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FOR_STATEMENT">FOR_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>41</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FUNCTION_CALL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FUNCTION_CALL">FUNCTION_CALL</A></CODE></TD>
-<TD ALIGN="right"><CODE>42</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FUNCTION_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FUNCTION_DECLARATION">FUNCTION_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>43</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.FUNCTION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#FUNCTION_EXPRESSION">FUNCTION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>44</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.IF_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#IF_STATEMENT">IF_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>45</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.IMPORT_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#IMPORT_REFERENCE">IMPORT_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>46</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#INITIALIZER">INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>47</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.INSTANCEOF_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#INSTANCEOF_EXPRESSION">INSTANCEOF_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>48</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.INT_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#INT_LITERAL">INT_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>49</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.INT_LITERAL_MIN_VALUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#INT_LITERAL_MIN_VALUE">INT_LITERAL_MIN_VALUE</A></CODE></TD>
-<TD ALIGN="right"><CODE>50</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC">JSDOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>51</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_ALLOCATION_EXPRESSION">JSDOC_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>52</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_ARGUMENTEXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_ARGUMENTEXPRESSION">JSDOC_ARGUMENTEXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>53</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_ARRAY_QUALIFIED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_ARRAY_QUALIFIED_TYPE_REFERENCE">JSDOC_ARRAY_QUALIFIED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>54</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_ARRAY_SINGLE_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_ARRAY_SINGLE_TYPE_REFERENCE">JSDOC_ARRAY_SINGLE_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>55</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_FIELD_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_FIELD_REFERENCE">JSDOC_FIELD_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>56</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_IMPLICIT_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_IMPLICIT_TYPE_REFERENCE">JSDOC_IMPLICIT_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>57</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_MESSAGE_SEND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_MESSAGE_SEND">JSDOC_MESSAGE_SEND</A></CODE></TD>
-<TD ALIGN="right"><CODE>58</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_QUALIFIED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_QUALIFIED_TYPE_REFERENCE">JSDOC_QUALIFIED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>59</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_RETURN_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_RETURN_STATEMENT">JSDOC_RETURN_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>60</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_SINGLE_NAME_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_SINGLE_NAME_REFERENCE">JSDOC_SINGLE_NAME_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>61</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.JSDOC_SINGLE_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_SINGLE_TYPE_REFERENCE">JSDOC_SINGLE_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>62</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.LABELED_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#LABELED_STATEMENT">LABELED_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>63</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.LIST_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#LIST_EXPRESSION">LIST_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#LITERAL">LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>65</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.LOCAL_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#LOCAL_DECLARATION">LOCAL_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>66</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.LONG_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#LONG_LITERAL">LONG_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>67</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.LONG_LITERAL_MIN_VALUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#LONG_LITERAL_MIN_VALUE">LONG_LITERAL_MIN_VALUE</A></CODE></TD>
-<TD ALIGN="right"><CODE>68</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.MAGIC_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#MAGIC_LITERAL">MAGIC_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>69</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.MARKER_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#MARKER_ANNOTATION">MARKER_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>70</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.MEMBER_VALUEPAIR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#MEMBER_VALUEPAIR">MEMBER_VALUEPAIR</A></CODE></TD>
-<TD ALIGN="right"><CODE>71</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.NAME_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#NAME_REFERENCE">NAME_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>72</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.NORMAL_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#NORMAL_ANNOTATION">NORMAL_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>73</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.NULL_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#NULL_LITERAL">NULL_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>74</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.NUMBER_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#NUMBER_LITERAL">NUMBER_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>75</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.OBJECT_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#OBJECT_LITERAL">OBJECT_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>76</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.OBJECT_LITERAL_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#OBJECT_LITERAL_FIELD">OBJECT_LITERAL_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>77</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.OPERATOR_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#OPERATOR_EXPRESSION">OPERATOR_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>78</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.OR_OR_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#OR_OR_EXPRESSION">OR_OR_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>79</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.PARAMETERIZED_QUALIFIED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#PARAMETERIZED_QUALIFIED_TYPE_REFERENCE">PARAMETERIZED_QUALIFIED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>80</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.PARAMETERIZED_SINGLE_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#PARAMETERIZED_SINGLE_TYPE_REFERENCE">PARAMETERIZED_SINGLE_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>81</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.POSTFIX_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#POSTFIX_EXPRESSION">POSTFIX_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>82</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.PREFIX_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#PREFIX_EXPRESSION">PREFIX_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>83</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.PROGRAM_ELEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#PROGRAM_ELEMENT">PROGRAM_ELEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>84</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.QUALIFIED_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#QUALIFIED_ALLOCATION_EXPRESSION">QUALIFIED_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>85</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.QUALIFIED_NAME_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#QUALIFIED_NAME_REFERENCE">QUALIFIED_NAME_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>86</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.QUALIFIED_SUPER_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#QUALIFIED_SUPER_REFERENCE">QUALIFIED_SUPER_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>87</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.QUALIFIED_THIS_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#QUALIFIED_THIS_REFERENCE">QUALIFIED_THIS_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>88</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.QUALIFIED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#QUALIFIED_TYPE_REFERENCE">QUALIFIED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>89</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#REFERENCE">REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>90</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.REG_EX_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#REG_EX_LITERAL">REG_EX_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>91</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.RETURN_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#RETURN_STATEMENT">RETURN_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>92</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.SCRIPT_FILE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#SCRIPT_FILE_DECLARATION">SCRIPT_FILE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>93</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.SINGLE_MEMBER_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#SINGLE_MEMBER_ANNOTATION">SINGLE_MEMBER_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>94</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.SINGLE_NAME_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#SINGLE_NAME_REFERENCE">SINGLE_NAME_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>95</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.SINGLE_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#SINGLE_TYPE_REFERENCE">SINGLE_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>96</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#STATEMENT">STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>97</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.STRING_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#STRING_LITERAL">STRING_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>98</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.STRING_LITERAL_CONCATENATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#STRING_LITERAL_CONCATENATION">STRING_LITERAL_CONCATENATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>99</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.SUB_ROUTINE_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#SUB_ROUTINE_STATEMENT">SUB_ROUTINE_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>100</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.SUPER_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#SUPER_REFERENCE">SUPER_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>101</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.SWITCH_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#SWITCH_STATEMENT">SWITCH_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>102</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.THIS_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#THIS_REFERENCE">THIS_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>103</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.THROW_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#THROW_STATEMENT">THROW_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>104</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.TRUE_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#TRUE_LITERAL">TRUE_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>105</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.TRY_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#TRY_STATEMENT">TRY_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>106</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#TYPE_DECLARATION">TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>107</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.TYPE_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#TYPE_PARAMETER">TYPE_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>108</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#TYPE_REFERENCE">TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>109</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.UNARY_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#UNARY_EXPRESSION">UNARY_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>110</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.UNDEFINED_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#UNDEFINED_LITERAL">UNDEFINED_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>111</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.WHILE_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#WHILE_STATEMENT">WHILE_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>112</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.WILDCARD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#WILDCARD">WILDCARD</A></CODE></TD>
-<TD ALIGN="right"><CODE>113</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.ast.IASTNode.WITH_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/ast/IASTNode.html#WITH_STATEMENT">WITH_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>114</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.compiler.<A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_BUILDPATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_BUILDPATH">CAT_BUILDPATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>10</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_CODE_STYLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_CODE_STYLE">CAT_CODE_STYLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>80</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_DEPRECATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_DEPRECATION">CAT_DEPRECATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>110</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_IMPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_IMPORT">CAT_IMPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>30</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_INTERNAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_INTERNAL">CAT_INTERNAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>60</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_JAVADOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_JAVADOC">CAT_JAVADOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>70</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_MEMBER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_MEMBER">CAT_MEMBER</A></CODE></TD>
-<TD ALIGN="right"><CODE>50</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_NAME_SHADOWING_CONFLICT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_NAME_SHADOWING_CONFLICT">CAT_NAME_SHADOWING_CONFLICT</A></CODE></TD>
-<TD ALIGN="right"><CODE>100</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_NLS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_NLS">CAT_NLS</A></CODE></TD>
-<TD ALIGN="right"><CODE>140</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_POTENTIAL_PROGRAMMING_PROBLEM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_POTENTIAL_PROGRAMMING_PROBLEM">CAT_POTENTIAL_PROGRAMMING_PROBLEM</A></CODE></TD>
-<TD ALIGN="right"><CODE>90</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_RESTRICTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_RESTRICTION">CAT_RESTRICTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>150</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_SYNTAX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_SYNTAX">CAT_SYNTAX</A></CODE></TD>
-<TD ALIGN="right"><CODE>20</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_TYPE">CAT_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>40</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_UNCHECKED_RAW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_UNCHECKED_RAW">CAT_UNCHECKED_RAW</A></CODE></TD>
-<TD ALIGN="right"><CODE>130</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_UNNECESSARY_CODE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_UNNECESSARY_CODE">CAT_UNNECESSARY_CODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>120</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.CategorizedProblem.CAT_UNSPECIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_UNSPECIFIED">CAT_UNSPECIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.compiler.<A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AbstractMethodCannotBeOverridden"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AbstractMethodCannotBeOverridden">AbstractMethodCannotBeOverridden</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109275</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AbstractMethodInAbstractClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AbstractMethodInAbstractClass">AbstractMethodInAbstractClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109227</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AbstractMethodMustBeImplemented"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AbstractMethodMustBeImplemented">AbstractMethodMustBeImplemented</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109264</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AmbiguousConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousConstructor">AmbiguousConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217860</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AmbiguousConstructorInDefaultConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousConstructorInDefaultConstructor">AmbiguousConstructorInDefaultConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217870</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AmbiguousConstructorInImplicitConstructorCall"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousConstructorInImplicitConstructorCall">AmbiguousConstructorInImplicitConstructorCall</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217873</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AmbiguousField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousField">AmbiguousField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554504</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AmbiguousMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousMethod">AmbiguousMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108966</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AmbiguousType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType">AmbiguousType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777220</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationCannotOverrideMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationCannotOverrideMethod">AnnotationCannotOverrideMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109480</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationCircularity"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationCircularity">AnnotationCircularity</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777823</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationCircularitySelfReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationCircularitySelfReference">AnnotationCircularitySelfReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777822</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationFieldNeedConstantInitialization"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationFieldNeedConstantInitialization">AnnotationFieldNeedConstantInitialization</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871526</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationMembersCannotHaveParameters"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationMembersCannotHaveParameters">AnnotationMembersCannotHaveParameters</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613353</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationMembersCannotHaveTypeParameters"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationMembersCannotHaveTypeParameters">AnnotationMembersCannotHaveTypeParameters</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613354</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationTypeDeclarationCannotHaveConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationTypeDeclarationCannotHaveConstructor">AnnotationTypeDeclarationCannotHaveConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613360</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationTypeDeclarationCannotHaveSuperclass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationTypeDeclarationCannotHaveSuperclass">AnnotationTypeDeclarationCannotHaveSuperclass</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613355</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationTypeDeclarationCannotHaveSuperinterfaces"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationTypeDeclarationCannotHaveSuperinterfaces">AnnotationTypeDeclarationCannotHaveSuperinterfaces</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613356</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationTypeUsedAsSuperInterface"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationTypeUsedAsSuperInterface">AnnotationTypeUsedAsSuperInterface</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777842</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationValueMustBeAnEnumConstant"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeAnEnumConstant">AnnotationValueMustBeAnEnumConstant</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871545</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationValueMustBeAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeAnnotation">AnnotationValueMustBeAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871537</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationValueMustBeArrayInitializer"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeArrayInitializer">AnnotationValueMustBeArrayInitializer</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871544</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationValueMustBeClassLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeClassLiteral">AnnotationValueMustBeClassLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871524</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnnotationValueMustBeConstant"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeConstant">AnnotationValueMustBeConstant</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871525</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AnonymousClassCannotExtendFinalClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnonymousClassCannotExtendFinalClass">AnonymousClassCannotExtendFinalClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777245</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentHidingField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentHidingField">ArgumentHidingField</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871007</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentHidingLocalVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentHidingLocalVariable">ArgumentHidingLocalVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871006</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentIsNeverUsed"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentIsNeverUsed">ArgumentIsNeverUsed</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870974</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeAmbiguous"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeAmbiguous">ArgumentTypeAmbiguous</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109236</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeCannotBeVoid"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeCannotBeVoid">ArgumentTypeCannotBeVoid</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109228</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeCannotBeVoidArray"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeCannotBeVoidArray">ArgumentTypeCannotBeVoidArray</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109229</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeInheritedNameHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeInheritedNameHidesEnclosingName">ArgumentTypeInheritedNameHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109238</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeInternalNameProvided"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeInternalNameProvided">ArgumentTypeInternalNameProvided</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109237</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeNotFound"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeNotFound">ArgumentTypeNotFound</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109234</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeNotVisible"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeNotVisible">ArgumentTypeNotVisible</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109235</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArrayConstantsOnlyInArrayInitializers"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArrayConstantsOnlyInArrayInitializers">ArrayConstantsOnlyInArrayInitializers</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612944</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ArrayReferenceRequired"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArrayReferenceRequired">ArrayReferenceRequired</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871062</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.AssignmentHasNoEffect"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AssignmentHasNoEffect">AssignmentHasNoEffect</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871090</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BodyForAbstractMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BodyForAbstractMethod">BodyForAbstractMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979889</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BodyForNativeMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BodyForNativeMethod">BodyForNativeMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979888</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BoundCannotBeArray"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BoundCannotBeArray">BoundCannotBeArray</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777784</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BoundHasConflictingArguments"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BoundHasConflictingArguments">BoundHasConflictingArguments</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777780</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BoundMustBeAnInterface"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BoundMustBeAnInterface">BoundMustBeAnInterface</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777745</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BoxingConversion"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BoxingConversion">BoxingConversion</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871632</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BytecodeExceeds64KLimit"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BytecodeExceeds64KLimit">BytecodeExceeds64KLimit</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870975</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BytecodeExceeds64KLimitForClinit"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BytecodeExceeds64KLimitForClinit">BytecodeExceeds64KLimitForClinit</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870976</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.BytecodeExceeds64KLimitForConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#BytecodeExceeds64KLimitForConstructor">BytecodeExceeds64KLimitForConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870981</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotAllocateVoidArray"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotAllocateVoidArray">CannotAllocateVoidArray</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870966</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotDeclareEnumSpecialMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDeclareEnumSpecialMethod">CannotDeclareEnumSpecialMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109618</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotDefineAnnotationInLocalType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineAnnotationInLocalType">CannotDefineAnnotationInLocalType</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870942</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotDefineDimensionExpressionsWithInit"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineDimensionExpressionsWithInit">CannotDefineDimensionExpressionsWithInit</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871070</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotDefineEnumInLocalType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineEnumInLocalType">CannotDefineEnumInLocalType</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870943</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotDefineInterfaceInLocalType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineInterfaceInLocalType">CannotDefineInterfaceInLocalType</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870938</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotDefineStaticInitializerInLocalType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineStaticInitializerInLocalType">CannotDefineStaticInitializerInLocalType</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870936</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotExtendEnum"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotExtendEnum">CannotExtendEnum</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777972</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotHideAnInstanceMethodWithAStaticMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotHideAnInstanceMethodWithAStaticMethod">CannotHideAnInstanceMethodWithAStaticMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109271</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotImportPackage"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotImportPackage">CannotImportPackage</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435843</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotInvokeSuperConstructorInEnum"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotInvokeSuperConstructorInEnum">CannotInvokeSuperConstructorInEnum</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109621</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotOverrideAStaticMethodWithAnInstanceMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotOverrideAStaticMethodWithAnInstanceMethod">CannotOverrideAStaticMethodWithAnInstanceMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109270</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotReadSource"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotReadSource">CannotReadSource</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871614</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotReturnOutsideFunction"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotReturnOutsideFunction">CannotReturnOutsideFunction</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871074</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotThrowNull"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotThrowNull">CannotThrowNull</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871089</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotThrowType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotThrowType">CannotThrowType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777536</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CannotUseSuperInCodeSnippet"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotUseSuperInCodeSnippet">CannotUseSuperInCodeSnippet</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871334</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ClassExtendFinalClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ClassExtendFinalClass">ClassExtendFinalClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777529</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CodeCannotBeReached"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CodeCannotBeReached">CodeCannotBeReached</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871073</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CodeSnippetMissingClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CodeSnippetMissingClass">CodeSnippetMissingClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871332</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CodeSnippetMissingMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CodeSnippetMissingMethod">CodeSnippetMissingMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871333</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ConflictingImport"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ConflictingImport">ConflictingImport</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435841</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ConstructorRelated"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ConstructorRelated">ConstructorRelated</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217728</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ConstructorVarargsArgumentNeedCast"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ConstructorVarargsArgumentNeedCast">ConstructorVarargsArgumentNeedCast</A></CODE></TD>
-<TD ALIGN="right"><CODE>134218530</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.CorruptedSignature"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CorruptedSignature">CorruptedSignature</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871612</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DirectInvocationOfAbstractMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DirectInvocationOfAbstractMethod">DirectInvocationOfAbstractMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108968</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DisallowedTargetForAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DisallowedTargetForAnnotation">DisallowedTargetForAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777838</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DiscouragedReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DiscouragedReference">DiscouragedReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777496</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateAnnotation">DuplicateAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777824</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateAnnotationMember"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateAnnotationMember">DuplicateAnnotationMember</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871522</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateBlankFinalFieldInitialization"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateBlankFinalFieldInitialization">DuplicateBlankFinalFieldInitialization</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554514</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateBounds"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateBounds">DuplicateBounds</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777783</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateCase"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateCase">DuplicateCase</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554602</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateDefaultCase"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateDefaultCase">DuplicateDefaultCase</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871078</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateField">DuplicateField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554772</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateFinalLocalInitialization"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateFinalLocalInitialization">DuplicateFinalLocalInitialization</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870969</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateImport"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateImport">DuplicateImport</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435842</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateLabel"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateLabel">DuplicateLabel</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871083</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateMethod">DuplicateMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109219</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateMethodErasure"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateMethodErasure">DuplicateMethodErasure</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777743</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateModifierForArgument"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateModifierForArgument">DuplicateModifierForArgument</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109232</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateModifierForField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateModifierForField">DuplicateModifierForField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554773</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateModifierForMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateModifierForMethod">DuplicateModifierForMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109221</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateModifierForType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateModifierForType">DuplicateModifierForType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777517</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateModifierForVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateModifierForVariable">DuplicateModifierForVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109259</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateNestedType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateNestedType">DuplicateNestedType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777535</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateParameterizedMethods"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateParameterizedMethods">DuplicateParameterizedMethods</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109429</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateSuperInterface"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateSuperInterface">DuplicateSuperInterface</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777530</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateTargetInTargetAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateTargetInTargetAnnotation">DuplicateTargetInTargetAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871533</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateTypes"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateTypes">DuplicateTypes</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777539</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.DuplicateTypeVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#DuplicateTypeVariable">DuplicateTypeVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871432</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.EmptyControlFlowStatement"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#EmptyControlFlowStatement">EmptyControlFlowStatement</A></CODE></TD>
-<TD ALIGN="right"><CODE>553648316</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.EnclosingInstanceInConstructorCall"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#EnclosingInstanceInConstructorCall">EnclosingInstanceInConstructorCall</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870940</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.EndOfSource"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#EndOfSource">EndOfSource</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612986</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.EnumAbstractMethodMustBeImplemented"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#EnumAbstractMethodMustBeImplemented">EnumAbstractMethodMustBeImplemented</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109622</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.EnumConstantsCannotBeSurroundedByParenthesis"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#EnumConstantsCannotBeSurroundedByParenthesis">EnumConstantsCannotBeSurroundedByParenthesis</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613178</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.EnumStaticFieldInInInitializerContext"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#EnumStaticFieldInInInitializerContext">EnumStaticFieldInInInitializerContext</A></CODE></TD>
-<TD ALIGN="right"><CODE>33555194</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.EnumSwitchCannotTargetField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#EnumSwitchCannotTargetField">EnumSwitchCannotTargetField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33555191</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeAmbiguous"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeAmbiguous">ExceptionTypeAmbiguous</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109241</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeInheritedNameHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeInheritedNameHidesEnclosingName">ExceptionTypeInheritedNameHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109243</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeInternalNameProvided"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeInternalNameProvided">ExceptionTypeInternalNameProvided</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109242</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeNotFound"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeNotFound">ExceptionTypeNotFound</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109239</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeNotVisible"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeNotVisible">ExceptionTypeNotVisible</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109240</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ExpressionShouldBeAVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExpressionShouldBeAVariable">ExpressionShouldBeAVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612959</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ExternalProblemFixable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExternalProblemFixable">ExternalProblemFixable</A></CODE></TD>
-<TD ALIGN="right"><CODE>901</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ExternalProblemNotFixable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExternalProblemNotFixable">ExternalProblemNotFixable</A></CODE></TD>
-<TD ALIGN="right"><CODE>900</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FallthroughCase"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FallthroughCase">FallthroughCase</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871106</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FieldHidingField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FieldHidingField">FieldHidingField</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425437</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FieldHidingLocalVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FieldHidingLocalVariable">FieldHidingLocalVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425436</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FieldMissingDeprecatedAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FieldMissingDeprecatedAnnotation">FieldMissingDeprecatedAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871540</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FieldRelated"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FieldRelated">FieldRelated</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554432</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FinalBoundForTypeVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FinalBoundForTypeVariable">FinalBoundForTypeVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777753</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FinalFieldAssignment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FinalFieldAssignment">FinalFieldAssignment</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554512</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FinallyMustCompleteNormally"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FinallyMustCompleteNormally">FinallyMustCompleteNormally</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871096</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FinalMethodCannotBeOverridden"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FinalMethodCannotBeOverridden">FinalMethodCannotBeOverridden</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109265</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.FinalOuterLocalAssignment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#FinalOuterLocalAssignment">FinalOuterLocalAssignment</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870972</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ForbiddenReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ForbiddenReference">ForbiddenReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777523</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.GenericConstructorTypeArgumentMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#GenericConstructorTypeArgumentMismatch">GenericConstructorTypeArgumentMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777760</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.GenericMethodTypeArgumentMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#GenericMethodTypeArgumentMismatch">GenericMethodTypeArgumentMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777759</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.GenericTypeCannotExtendThrowable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#GenericTypeCannotExtendThrowable">GenericTypeCannotExtendThrowable</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777773</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.HidingEnclosingType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#HidingEnclosingType">HidingEnclosingType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777534</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.HierarchyCircularity"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#HierarchyCircularity">HierarchyCircularity</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777533</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.HierarchyCircularitySelfReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#HierarchyCircularitySelfReference">HierarchyCircularitySelfReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777532</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.HierarchyHasProblems"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#HierarchyHasProblems">HierarchyHasProblems</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777543</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IgnoreCategoriesMask"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IgnoreCategoriesMask">IgnoreCategoriesMask</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777215</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalAbstractModifierCombinationForMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalAbstractModifierCombinationForMethod">IllegalAbstractModifierCombinationForMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109226</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalAccessFromTypeVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalAccessFromTypeVariable">IllegalAccessFromTypeVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777791</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalCast"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalCast">IllegalCast</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777372</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalClassLiteralForTypeVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalClassLiteralForTypeVariable">IllegalClassLiteralForTypeVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777774</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalDimension"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalDimension">IllegalDimension</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871114</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalEnclosingInstanceSpecification"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalEnclosingInstanceSpecification">IllegalEnclosingInstanceSpecification</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777239</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalExtendedDimensions"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalExtendedDimensions">IllegalExtendedDimensions</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109465</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalExtendedDimensionsForVarArgs"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalExtendedDimensionsForVarArgs">IllegalExtendedDimensionsForVarArgs</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613536</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalGenericArray"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalGenericArray">IllegalGenericArray</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777751</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalInstanceofParameterizedType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalInstanceofParameterizedType">IllegalInstanceofParameterizedType</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871458</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalInstanceofTypeParameter"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalInstanceofTypeParameter">IllegalInstanceofTypeParameter</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871459</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierCombinationFinalAbstractForClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierCombinationFinalAbstractForClass">IllegalModifierCombinationFinalAbstractForClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777524</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierCombinationFinalVolatileForField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierCombinationFinalVolatileForField">IllegalModifierCombinationFinalVolatileForField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554777</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForAnnotationField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForAnnotationField">IllegalModifierForAnnotationField</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871527</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForAnnotationMemberType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForAnnotationMemberType">IllegalModifierForAnnotationMemberType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777820</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForAnnotationMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForAnnotationMethod">IllegalModifierForAnnotationMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109464</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForAnnotationType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForAnnotationType">IllegalModifierForAnnotationType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777819</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForArgument"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForArgument">IllegalModifierForArgument</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109220</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForClass">IllegalModifierForClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777518</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForEnum"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForEnum">IllegalModifierForEnum</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777966</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForEnumConstant"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForEnumConstant">IllegalModifierForEnumConstant</A></CODE></TD>
-<TD ALIGN="right"><CODE>33555183</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForEnumConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForEnumConstructor">IllegalModifierForEnumConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109624</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForField">IllegalModifierForField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554774</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForInterface"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForInterface">IllegalModifierForInterface</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777519</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForInterfaceField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForInterfaceField">IllegalModifierForInterfaceField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554775</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForInterfaceMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForInterfaceMethod">IllegalModifierForInterfaceMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109223</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForLocalClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForLocalClass">IllegalModifierForLocalClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777522</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForLocalEnum"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForLocalEnum">IllegalModifierForLocalEnum</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777968</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForMemberClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForMemberClass">IllegalModifierForMemberClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777520</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForMemberEnum"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForMemberEnum">IllegalModifierForMemberEnum</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777969</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForMemberInterface"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForMemberInterface">IllegalModifierForMemberInterface</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777521</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForMethod">IllegalModifierForMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109222</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalModifierForVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalModifierForVariable">IllegalModifierForVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109260</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalPrimitiveOrArrayTypeForEnclosingInstance"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalPrimitiveOrArrayTypeForEnclosingInstance">IllegalPrimitiveOrArrayTypeForEnclosingInstance</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777243</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalQualifiedEnumConstantLabel"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalQualifiedEnumConstantLabel">IllegalQualifiedEnumConstantLabel</A></CODE></TD>
-<TD ALIGN="right"><CODE>33555187</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalQualifiedParameterizedTypeAllocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalQualifiedParameterizedTypeAllocation">IllegalQualifiedParameterizedTypeAllocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777782</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalStaticModifierForMemberType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalStaticModifierForMemberType">IllegalStaticModifierForMemberType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777527</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalTypeVariableSuperReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalTypeVariableSuperReference">IllegalTypeVariableSuperReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871433</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalUsageOfQualifiedTypeReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalUsageOfQualifiedTypeReference">IllegalUsageOfQualifiedTypeReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612934</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalVararg"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalVararg">IllegalVararg</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109279</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalVisibilityModifierCombinationForField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalVisibilityModifierCombinationForField">IllegalVisibilityModifierCombinationForField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554776</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalVisibilityModifierCombinationForMemberType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalVisibilityModifierCombinationForMemberType">IllegalVisibilityModifierCombinationForMemberType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777526</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalVisibilityModifierCombinationForMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalVisibilityModifierCombinationForMethod">IllegalVisibilityModifierCombinationForMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109224</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IllegalVisibilityModifierForInterfaceMemberType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IllegalVisibilityModifierForInterfaceMemberType">IllegalVisibilityModifierForInterfaceMemberType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777525</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ImportAmbiguous"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportAmbiguous">ImportAmbiguous</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435848</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ImportInheritedNameHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportInheritedNameHidesEnclosingName">ImportInheritedNameHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435850</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ImportInternalNameProvided"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportInternalNameProvided">ImportInternalNameProvided</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435849</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ImportNotFound"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportNotFound">ImportNotFound</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435846</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ImportNotVisible"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportNotVisible">ImportNotVisible</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435847</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ImportRelated"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportRelated">ImportRelated</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435456</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncompatibleExceptionInInheritedMethodThrowsClause"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncompatibleExceptionInInheritedMethodThrowsClause">IncompatibleExceptionInInheritedMethodThrowsClause</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109267</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncompatibleExceptionInThrowsClause"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncompatibleExceptionInThrowsClause">IncompatibleExceptionInThrowsClause</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109266</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncompatibleExceptionInThrowsClauseForNonInheritedInterfaceMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncompatibleExceptionInThrowsClauseForNonInheritedInterfaceMethod">IncompatibleExceptionInThrowsClauseForNonInheritedInterfaceMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109278</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncompatibleReturnType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncompatibleReturnType">IncompatibleReturnType</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109268</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncompatibleReturnTypeForNonInheritedInterfaceMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncompatibleReturnTypeForNonInheritedInterfaceMethod">IncompatibleReturnTypeForNonInheritedInterfaceMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109277</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncompatibleTypesInConditionalOperator"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncompatibleTypesInConditionalOperator">IncompatibleTypesInConditionalOperator</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777232</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncompatibleTypesInEqualityOperator"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncompatibleTypesInEqualityOperator">IncompatibleTypesInEqualityOperator</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777231</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncompatibleTypesInForeach"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncompatibleTypesInForeach">IncompatibleTypesInForeach</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777796</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncorrectArityForParameterizedConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncorrectArityForParameterizedConstructor">IncorrectArityForParameterizedConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777768</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncorrectArityForParameterizedMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncorrectArityForParameterizedMethod">IncorrectArityForParameterizedMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777765</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncorrectArityForParameterizedType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncorrectArityForParameterizedType">IncorrectArityForParameterizedType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777741</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncorrectEnclosingInstanceReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncorrectEnclosingInstanceReference">IncorrectEnclosingInstanceReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777238</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IncorrectSwitchType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IncorrectSwitchType">IncorrectSwitchType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777385</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IndirectAccessToStaticField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IndirectAccessToStaticField">IndirectAccessToStaticField</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425422</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IndirectAccessToStaticMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IndirectAccessToStaticMethod">IndirectAccessToStaticMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979895</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IndirectAccessToStaticType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IndirectAccessToStaticType">IndirectAccessToStaticType</A></CODE></TD>
-<TD ALIGN="right"><CODE>553648146</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InheritedFieldHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedFieldHidesEnclosingName">InheritedFieldHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554628</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InheritedMethodHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedMethodHidesEnclosingName">InheritedMethodHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109059</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InheritedMethodReducesVisibility"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedMethodReducesVisibility">InheritedMethodReducesVisibility</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109269</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InheritedTypeHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedTypeHidesEnclosingName">InheritedTypeHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777413</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InitializerMustCompleteNormally"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InitializerMustCompleteNormally">InitializerMustCompleteNormally</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871075</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InstanceFieldDuringConstructorInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InstanceFieldDuringConstructorInvocation">InstanceFieldDuringConstructorInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217863</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InstanceMethodDuringConstructorInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InstanceMethodDuringConstructorInvocation">InstanceMethodDuringConstructorInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217864</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceAmbiguous"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceAmbiguous">InterfaceAmbiguous</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777553</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceCannotHaveConstructors"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceCannotHaveConstructors">InterfaceCannotHaveConstructors</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612943</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceCannotHaveInitializers"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceCannotHaveInitializers">InterfaceCannotHaveInitializers</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777516</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceInheritedNameHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceInheritedNameHidesEnclosingName">InterfaceInheritedNameHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777555</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceInternalNameProvided"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceInternalNameProvided">InterfaceInternalNameProvided</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777554</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceNotFound"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceNotFound">InterfaceNotFound</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777551</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceNotVisible"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceNotVisible">InterfaceNotVisible</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777552</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.Internal"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#Internal">Internal</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870912</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InternalTypeNameProvided"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InternalTypeNameProvided">InternalTypeNameProvided</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777222</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidAnnotationMemberType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidAnnotationMemberType">InvalidAnnotationMemberType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777821</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidBreak"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidBreak">InvalidBreak</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871084</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidCatchBlockSequence"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidCatchBlockSequence">InvalidCatchBlockSequence</A></CODE></TD>
-<TD ALIGN="right"><CODE>553648315</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidCharacterConstant"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidCharacterConstant">InvalidCharacterConstant</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612989</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidClassInstantiation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidClassInstantiation">InvalidClassInstantiation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777373</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidContinue"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidContinue">InvalidContinue</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871085</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidDigit"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidDigit">InvalidDigit</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612998</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidEncoding"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidEncoding">InvalidEncoding</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871613</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidEscape"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidEscape">InvalidEscape</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612990</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidExplicitConstructorCall"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidExplicitConstructorCall">InvalidExplicitConstructorCall</A></CODE></TD>
-<TD ALIGN="right"><CODE>1207959691</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidExpressionAsStatement"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidExpressionAsStatement">InvalidExpressionAsStatement</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612958</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidFileNameForPackageAnnotations"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidFileNameForPackageAnnotations">InvalidFileNameForPackageAnnotations</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613338</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidFloat"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidFloat">InvalidFloat</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612993</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidHexa"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidHexa">InvalidHexa</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612987</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidHighSurrogate"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidHighSurrogate">InvalidHighSurrogate</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613000</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidInput"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidInput">InvalidInput</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612991</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidLowSurrogate"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidLowSurrogate">InvalidLowSurrogate</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612999</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidNullToSynchronized"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidNullToSynchronized">InvalidNullToSynchronized</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871088</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidOctal"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidOctal">InvalidOctal</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612988</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidOperator"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidOperator">InvalidOperator</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871072</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidParameterizedExceptionType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidParameterizedExceptionType">InvalidParameterizedExceptionType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777750</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidParenthesizedExpression"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidParenthesizedExpression">InvalidParenthesizedExpression</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612961</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidTypeExpression"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidTypeExpression">InvalidTypeExpression</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871115</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidTypeForCollection"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidTypeForCollection">InvalidTypeForCollection</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871493</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidTypeForStaticImport"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidTypeForStaticImport">InvalidTypeForStaticImport</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435847</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidTypeToSynchronized"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidTypeToSynchronized">InvalidTypeToSynchronized</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871087</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidTypeVariableExceptionType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidTypeVariableExceptionType">InvalidTypeVariableExceptionType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777749</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUnaryExpression"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUnaryExpression">InvalidUnaryExpression</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612942</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUnicodeEscape"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUnicodeEscape">InvalidUnicodeEscape</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612992</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfAnnotationDeclarations"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfAnnotationDeclarations">InvalidUsageOfAnnotationDeclarations</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613333</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfAnnotations"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfAnnotations">InvalidUsageOfAnnotations</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613332</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfEnumDeclarations"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfEnumDeclarations">InvalidUsageOfEnumDeclarations</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613330</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfForeachStatements"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfForeachStatements">InvalidUsageOfForeachStatements</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613328</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfStaticImports"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfStaticImports">InvalidUsageOfStaticImports</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613327</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfTypeArguments"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfTypeArguments">InvalidUsageOfTypeArguments</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613329</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfTypeParameters"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfTypeParameters">InvalidUsageOfTypeParameters</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613326</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfVarargs"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfVarargs">InvalidUsageOfVarargs</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613331</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidUsageOfWildcard"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidUsageOfWildcard">InvalidUsageOfWildcard</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610613314</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.InvalidVoidExpression"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InvalidVoidExpression">InvalidVoidExpression</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871076</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.IsClassPathCorrect"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#IsClassPathCorrect">IsClassPathCorrect</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777540</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.Javadoc"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#Javadoc">Javadoc</A></CODE></TD>
-<TD ALIGN="right"><CODE>-2147483648</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocAmbiguousConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousConstructor">JavadocAmbiguousConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612242</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocAmbiguousField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousField">JavadocAmbiguousField</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612246</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocAmbiguousMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousMethod">JavadocAmbiguousMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612238</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocAmbiguousMethodReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousMethodReference">JavadocAmbiguousMethodReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612225</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocAmbiguousType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousType">JavadocAmbiguousType</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612231</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocDuplicateParamName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocDuplicateParamName">JavadocDuplicateParamName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612263</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocDuplicateReturnTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocDuplicateReturnTag">JavadocDuplicateReturnTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612260</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocDuplicateTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocDuplicateTag">JavadocDuplicateTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612272</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocDuplicateThrowsClassName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocDuplicateThrowsClassName">JavadocDuplicateThrowsClassName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocEmptyReturnTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocEmptyReturnTag">JavadocEmptyReturnTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612220</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocGenericConstructorTypeArgumentMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocGenericConstructorTypeArgumentMismatch">JavadocGenericConstructorTypeArgumentMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611881</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocGenericMethodTypeArgumentMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocGenericMethodTypeArgumentMismatch">JavadocGenericMethodTypeArgumentMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611886</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocHiddenReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocHiddenReference">JavadocHiddenReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612271</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocIncorrectArityForParameterizedConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocIncorrectArityForParameterizedConstructor">JavadocIncorrectArityForParameterizedConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611879</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocIncorrectArityForParameterizedMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocIncorrectArityForParameterizedMethod">JavadocIncorrectArityForParameterizedMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611884</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInheritedFieldHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInheritedFieldHidesEnclosingName">JavadocInheritedFieldHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612227</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInheritedMethodHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInheritedMethodHidesEnclosingName">JavadocInheritedMethodHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612228</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInheritedNameHidesEnclosingTypeName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInheritedNameHidesEnclosingTypeName">JavadocInheritedNameHidesEnclosingTypeName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612226</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInternalTypeNameProvided"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInternalTypeNameProvided">JavadocInternalTypeNameProvided</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612229</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidMemberTypeQualification"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidMemberTypeQualification">JavadocInvalidMemberTypeQualification</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612270</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidParamName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidParamName">JavadocInvalidParamName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612262</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidParamTagName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidParamTagName">JavadocInvalidParamTagName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612217</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidParamTagTypeParameter"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidParamTagTypeParameter">JavadocInvalidParamTagTypeParameter</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612267</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidSeeArgs"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidSeeArgs">JavadocInvalidSeeArgs</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612251</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidSeeHref"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidSeeHref">JavadocInvalidSeeHref</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612252</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidSeeReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidSeeReference">JavadocInvalidSeeReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612253</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidTag">JavadocInvalidTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612249</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidThrowsClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidThrowsClass">JavadocInvalidThrowsClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612257</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidThrowsClassName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidThrowsClassName">JavadocInvalidThrowsClassName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612255</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocInvalidValueReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidValueReference">JavadocInvalidValueReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612219</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMalformedSeeReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMalformedSeeReference">JavadocMalformedSeeReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612223</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMessagePrefix"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMessagePrefix">JavadocMessagePrefix</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871426</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissing"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissing">JavadocMissing</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612250</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissingHashCharacter"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingHashCharacter">JavadocMissingHashCharacter</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612221</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissingIdentifier"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingIdentifier">JavadocMissingIdentifier</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612269</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissingParamName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingParamName">JavadocMissingParamName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612264</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissingParamTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingParamTag">JavadocMissingParamTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612265</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissingReturnTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingReturnTag">JavadocMissingReturnTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612261</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissingSeeReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingSeeReference">JavadocMissingSeeReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612254</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissingThrowsClassName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingThrowsClassName">JavadocMissingThrowsClassName</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612258</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocMissingThrowsTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingThrowsTag">JavadocMissingThrowsTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612259</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNoMessageSendOnArrayType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNoMessageSendOnArrayType">JavadocNoMessageSendOnArrayType</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612234</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNoMessageSendOnBaseType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNoMessageSendOnBaseType">JavadocNoMessageSendOnBaseType</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612236</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNonGenericConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNonGenericConstructor">JavadocNonGenericConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611880</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNonGenericMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNonGenericMethod">JavadocNonGenericMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611885</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNonStaticTypeFromStaticInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNonStaticTypeFromStaticInvocation">JavadocNonStaticTypeFromStaticInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612268</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNotVisibleConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNotVisibleConstructor">JavadocNotVisibleConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612243</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNotVisibleField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNotVisibleField">JavadocNotVisibleField</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612247</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNotVisibleMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNotVisibleMethod">JavadocNotVisibleMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612239</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocNotVisibleType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNotVisibleType">JavadocNotVisibleType</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612232</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocParameterizedConstructorArgumentTypeMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocParameterizedConstructorArgumentTypeMismatch">JavadocParameterizedConstructorArgumentTypeMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611878</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocParameterizedMethodArgumentTypeMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocParameterizedMethodArgumentTypeMismatch">JavadocParameterizedMethodArgumentTypeMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611883</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocParameterMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocParameterMismatch">JavadocParameterMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612235</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocTypeArgumentsForRawGenericConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocTypeArgumentsForRawGenericConstructor">JavadocTypeArgumentsForRawGenericConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611877</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocTypeArgumentsForRawGenericMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocTypeArgumentsForRawGenericMethod">JavadocTypeArgumentsForRawGenericMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610611882</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUndefinedConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUndefinedConstructor">JavadocUndefinedConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612244</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUndefinedField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUndefinedField">JavadocUndefinedField</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612248</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUndefinedMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUndefinedMethod">JavadocUndefinedMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612240</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUndefinedType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUndefinedType">JavadocUndefinedType</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612233</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUnexpectedTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUnexpectedTag">JavadocUnexpectedTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612266</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUnexpectedText"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUnexpectedText">JavadocUnexpectedText</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612218</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUnterminatedInlineTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUnterminatedInlineTag">JavadocUnterminatedInlineTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612224</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUsingDeprecatedConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUsingDeprecatedConstructor">JavadocUsingDeprecatedConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612241</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUsingDeprecatedField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUsingDeprecatedField">JavadocUsingDeprecatedField</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612245</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUsingDeprecatedMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUsingDeprecatedMethod">JavadocUsingDeprecatedMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612237</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.JavadocUsingDeprecatedType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUsingDeprecatedType">JavadocUsingDeprecatedType</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1610612230</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableCannotBeNull"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableCannotBeNull">LocalVariableCannotBeNull</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871309</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableCanOnlyBeNull"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableCanOnlyBeNull">LocalVariableCanOnlyBeNull</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871310</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableHidingField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableHidingField">LocalVariableHidingField</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425435</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableHidingLocalVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableHidingLocalVariable">LocalVariableHidingLocalVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871002</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableIsNeverUsed"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableIsNeverUsed">LocalVariableIsNeverUsed</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870973</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableMayBeNull"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableMayBeNull">LocalVariableMayBeNull</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871311</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.LooseVarDecl"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LooseVarDecl">LooseVarDecl</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871009</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MaskedCatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MaskedCatch">MaskedCatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777381</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodButWithConstructorName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodButWithConstructorName">MethodButWithConstructorName</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108974</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodMissingDeprecatedAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodMissingDeprecatedAnnotation">MethodMissingDeprecatedAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871541</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodMustOverride"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodMustOverride">MethodMustOverride</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109487</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodMustOverrideOrImplement"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodMustOverrideOrImplement">MethodMustOverrideOrImplement</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109498</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodNameClash"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodNameClash">MethodNameClash</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109424</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodReducesVisibility"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodReducesVisibility">MethodReducesVisibility</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109273</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodRelated"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodRelated">MethodRelated</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108864</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodRequiresBody"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodRequiresBody">MethodRequiresBody</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979883</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodReturnsVoid"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodReturnsVoid">MethodReturnsVoid</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108970</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MethodVarargsArgumentNeedCast"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodVarargsArgumentNeedCast">MethodVarargsArgumentNeedCast</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109665</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingArgumentsForParameterizedMemberType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingArgumentsForParameterizedMemberType">MissingArgumentsForParameterizedMemberType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777778</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingEnclosingInstance"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingEnclosingInstance">MissingEnclosingInstance</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777237</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingEnclosingInstanceForConstructorCall"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingEnclosingInstanceForConstructorCall">MissingEnclosingInstanceForConstructorCall</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777236</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingEnumConstantCase"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingEnumConstantCase">MissingEnumConstantCase</A></CODE></TD>
-<TD ALIGN="right"><CODE>33555193</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingOverrideAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingOverrideAnnotation">MissingOverrideAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109491</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingReturnType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingReturnType">MissingReturnType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777327</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingSemiColon"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingSemiColon">MissingSemiColon</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612960</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingSerialVersion"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingSerialVersion">MissingSerialVersion</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871008</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MissingValueForAnnotationMember"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingValueForAnnotationMember">MissingValueForAnnotationMember</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777825</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MustDefineEitherDimensionExpressionsOrInitializer"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MustDefineEitherDimensionExpressionsOrInitializer">MustDefineEitherDimensionExpressionsOrInitializer</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871071</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.MustSpecifyPackage"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#MustSpecifyPackage">MustSpecifyPackage</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871238</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NativeMethodsCannotBeStrictfp"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NativeMethodsCannotBeStrictfp">NativeMethodsCannotBeStrictfp</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109231</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NeedToEmulateConstructorAccess"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NeedToEmulateConstructorAccess">NeedToEmulateConstructorAccess</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109057</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NeedToEmulateFieldReadAccess"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NeedToEmulateFieldReadAccess">NeedToEmulateFieldReadAccess</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554622</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NeedToEmulateFieldWriteAccess"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NeedToEmulateFieldWriteAccess">NeedToEmulateFieldWriteAccess</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554623</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NeedToEmulateMethodAccess"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NeedToEmulateMethodAccess">NeedToEmulateMethodAccess</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109056</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NoAdditionalBoundAfterTypeVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoAdditionalBoundAfterTypeVariable">NoAdditionalBoundAfterTypeVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777789</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NoFieldOnBaseType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoFieldOnBaseType">NoFieldOnBaseType</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554653</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NoImplicitStringConversionForCharArrayExpression"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoImplicitStringConversionForCharArrayExpression">NoImplicitStringConversionForCharArrayExpression</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871063</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NoMessageSendOnArrayType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoMessageSendOnArrayType">NoMessageSendOnArrayType</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108980</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NoMessageSendOnBaseType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoMessageSendOnBaseType">NoMessageSendOnBaseType</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108978</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonBlankFinalLocalAssignment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonBlankFinalLocalAssignment">NonBlankFinalLocalAssignment</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870970</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonConstantExpression"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonConstantExpression">NonConstantExpression</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871065</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonExternalizedStringLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonExternalizedStringLiteral">NonExternalizedStringLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871173</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonGenericConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonGenericConstructor">NonGenericConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777767</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonGenericMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonGenericMethod">NonGenericMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777764</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonGenericType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonGenericType">NonGenericType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777740</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonNullLocalVariableComparisonYieldsFalse"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonNullLocalVariableComparisonYieldsFalse">NonNullLocalVariableComparisonYieldsFalse</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871370</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonStaticAccessToStaticField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticAccessToStaticField">NonStaticAccessToStaticField</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425420</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonStaticAccessToStaticMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticAccessToStaticMethod">NonStaticAccessToStaticMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979893</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonStaticContextForEnumMemberType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticContextForEnumMemberType">NonStaticContextForEnumMemberType</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870944</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonStaticFieldFromStaticInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticFieldFromStaticInvocation">NonStaticFieldFromStaticInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554506</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NonStaticTypeFromStaticInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticTypeFromStaticInvocation">NonStaticTypeFromStaticInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871434</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NotAFunction"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotAFunction">NotAFunction</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979897</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NotVisibleConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleConstructor">NotVisibleConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217859</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NotVisibleConstructorInDefaultConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleConstructorInDefaultConstructor">NotVisibleConstructorInDefaultConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217869</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NotVisibleConstructorInImplicitConstructorCall"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleConstructorInImplicitConstructorCall">NotVisibleConstructorInImplicitConstructorCall</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217872</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NotVisibleField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleField">NotVisibleField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554503</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NotVisibleMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleMethod">NotVisibleMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108965</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NotVisibleType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType">NotVisibleType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777219</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NullLocalVariableComparisonYieldsFalse"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullLocalVariableComparisonYieldsFalse">NullLocalVariableComparisonYieldsFalse</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871366</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NullLocalVariableInstanceofYieldsFalse"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullLocalVariableInstanceofYieldsFalse">NullLocalVariableInstanceofYieldsFalse</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871368</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NullLocalVariableReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullLocalVariableReference">NullLocalVariableReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871363</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NullSourceString"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullSourceString">NullSourceString</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612994</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.NumericValueOutOfRange"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NumericValueOutOfRange">NumericValueOutOfRange</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871066</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ObjectCannotBeGeneric"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ObjectCannotBeGeneric">ObjectCannotBeGeneric</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871435</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ObjectCannotHaveSuperTypes"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ObjectCannotHaveSuperTypes">ObjectCannotHaveSuperTypes</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871241</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ObjectHasNoSuperclass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ObjectHasNoSuperclass">ObjectHasNoSuperclass</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777217</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ObjectMustBeClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ObjectMustBeClass">ObjectMustBeClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871242</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.OptionalSemiColon"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#OptionalSemiColon">OptionalSemiColon</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612979</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.OuterLocalMustBeFinal"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#OuterLocalMustBeFinal">OuterLocalMustBeFinal</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870937</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.OverridingDeprecatedMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#OverridingDeprecatedMethod">OverridingDeprecatedMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109276</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.OverridingMethodWithoutSuperInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#OverridingMethodWithoutSuperInvocation">OverridingMethodWithoutSuperInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109280</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.OverridingNonVisibleMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#OverridingNonVisibleMethod">OverridingNonVisibleMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109274</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.PackageCollidesWithType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#PackageCollidesWithType">PackageCollidesWithType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777537</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.PackageIsNotExpectedPackage"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#PackageIsNotExpectedPackage">PackageIsNotExpectedPackage</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871240</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParameterAssignment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParameterAssignment">ParameterAssignment</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870971</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParameterizedConstructorArgumentTypeMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParameterizedConstructorArgumentTypeMismatch">ParameterizedConstructorArgumentTypeMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777769</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParameterizedMethodArgumentTypeMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParameterizedMethodArgumentTypeMismatch">ParameterizedMethodArgumentTypeMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777766</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParameterMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParameterMismatch">ParameterMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108979</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingError"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingError">ParsingError</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612940</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorDeleteToken"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorDeleteToken">ParsingErrorDeleteToken</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612968</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorDeleteTokens"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorDeleteTokens">ParsingErrorDeleteTokens</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612969</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorInsertToComplete"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertToComplete">ParsingErrorInsertToComplete</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612976</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorInsertToCompletePhrase"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertToCompletePhrase">ParsingErrorInsertToCompletePhrase</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612978</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorInsertToCompleteScope"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertToCompleteScope">ParsingErrorInsertToCompleteScope</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612977</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorInsertTokenAfter"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertTokenAfter">ParsingErrorInsertTokenAfter</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612967</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorInsertTokenBefore"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertTokenBefore">ParsingErrorInsertTokenBefore</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612966</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorInvalidToken"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInvalidToken">ParsingErrorInvalidToken</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612971</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorMergeTokens"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorMergeTokens">ParsingErrorMergeTokens</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612970</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorMisplacedConstruct"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorMisplacedConstruct">ParsingErrorMisplacedConstruct</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612972</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorNoSuggestion"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorNoSuggestion">ParsingErrorNoSuggestion</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612941</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorNoSuggestionForTokens"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorNoSuggestionForTokens">ParsingErrorNoSuggestionForTokens</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612974</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorOnKeyword"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorOnKeyword">ParsingErrorOnKeyword</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612945</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorOnKeywordNoSuggestion"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorOnKeywordNoSuggestion">ParsingErrorOnKeywordNoSuggestion</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612946</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorReplaceTokens"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorReplaceTokens">ParsingErrorReplaceTokens</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612973</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ParsingErrorUnexpectedEOF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorUnexpectedEOF">ParsingErrorUnexpectedEOF</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612975</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.PossibleAccidentalBooleanAssignment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#PossibleAccidentalBooleanAssignment">PossibleAccidentalBooleanAssignment</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871091</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.PotentialNullLocalVariableReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#PotentialNullLocalVariableReference">PotentialNullLocalVariableReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871364</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.PublicClassMustMatchFileName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#PublicClassMustMatchFileName">PublicClassMustMatchFileName</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777541</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.RawMemberTypeCannotBeParameterized"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RawMemberTypeCannotBeParameterized">RawMemberTypeCannotBeParameterized</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777777</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.RawTypeReference"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RawTypeReference">RawTypeReference</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777788</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.RecursiveConstructorInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RecursiveConstructorInvocation">RecursiveConstructorInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217865</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.RedefinedArgument"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedefinedArgument">RedefinedArgument</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870968</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.RedefinedLocal"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedefinedLocal">RedefinedLocal</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870967</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.RedundantLocalVariableNullAssignment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantLocalVariableNullAssignment">RedundantLocalVariableNullAssignment</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871367</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.RedundantNullCheckOnNonNullLocalVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantNullCheckOnNonNullLocalVariable">RedundantNullCheckOnNonNullLocalVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871369</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.RedundantNullCheckOnNullLocalVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantNullCheckOnNullLocalVariable">RedundantNullCheckOnNullLocalVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871365</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ReferenceToForwardField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReferenceToForwardField">ReferenceToForwardField</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425419</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ReferenceToForwardTypeVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReferenceToForwardTypeVariable">ReferenceToForwardTypeVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777744</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeAmbiguous"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeAmbiguous">ReturnTypeAmbiguous</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109246</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeCannotBeVoidArray"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeCannotBeVoidArray">ReturnTypeCannotBeVoidArray</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109230</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeInheritedNameHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeInheritedNameHidesEnclosingName">ReturnTypeInheritedNameHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109248</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeInternalNameProvided"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeInternalNameProvided">ReturnTypeInternalNameProvided</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109247</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeNotFound"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeNotFound">ReturnTypeNotFound</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109244</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeNotVisible"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeNotVisible">ReturnTypeNotVisible</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109245</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ShouldReturnValue"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ShouldReturnValue">ShouldReturnValue</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979884</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.StaticInheritedMethodConflicts"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#StaticInheritedMethodConflicts">StaticInheritedMethodConflicts</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109272</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.StaticMemberOfParameterizedType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#StaticMemberOfParameterizedType">StaticMemberOfParameterizedType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777779</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.StaticMethodRequested"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#StaticMethodRequested">StaticMethodRequested</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979977</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.StringConstantIsExceedingUtf8Limit"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#StringConstantIsExceedingUtf8Limit">StringConstantIsExceedingUtf8Limit</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871064</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassAmbiguous"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassAmbiguous">SuperclassAmbiguous</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777548</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassInheritedNameHidesEnclosingName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassInheritedNameHidesEnclosingName">SuperclassInheritedNameHidesEnclosingName</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777550</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassInternalNameProvided"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassInternalNameProvided">SuperclassInternalNameProvided</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777549</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassMustBeAClass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassMustBeAClass">SuperclassMustBeAClass</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777528</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassNotFound"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassNotFound">SuperclassNotFound</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777546</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassNotVisible"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassNotVisible">SuperclassNotVisible</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777547</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperfluousSemicolon"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperfluousSemicolon">SuperfluousSemicolon</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871092</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperInterfaceMustBeAnInterface"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperInterfaceMustBeAnInterface">SuperInterfaceMustBeAnInterface</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777531</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperInterfacesCollide"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperInterfacesCollide">SuperInterfacesCollide</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777755</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.SuperTypeUsingWildcard"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperTypeUsingWildcard">SuperTypeUsingWildcard</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777772</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.Syntax"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#Syntax">Syntax</A></CODE></TD>
-<TD ALIGN="right"><CODE>1073741824</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.Task"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#Task">Task</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871362</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ThisInStaticContext"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ThisInStaticContext">ThisInStaticContext</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871112</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.ThisSuperDuringConstructorInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ThisSuperDuringConstructorInvocation">ThisSuperDuringConstructorInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217866</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TooManyArgumentSlots"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TooManyArgumentSlots">TooManyArgumentSlots</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870977</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TooManyArrayDimensions"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TooManyArrayDimensions">TooManyArrayDimensions</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870980</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TooManyBytesForStringConstant"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TooManyBytesForStringConstant">TooManyBytesForStringConstant</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871343</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TooManyConstantsInConstantPool"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TooManyConstantsInConstantPool">TooManyConstantsInConstantPool</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871342</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TooManyFields"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TooManyFields">TooManyFields</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871344</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TooManyLocalVariableSlots"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TooManyLocalVariableSlots">TooManyLocalVariableSlots</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870978</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TooManyMethods"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TooManyMethods">TooManyMethods</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871345</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TooManySyntheticArgumentSlots"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TooManySyntheticArgumentSlots">TooManySyntheticArgumentSlots</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870979</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeArgumentMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeArgumentMismatch">TypeArgumentMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777742</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeArgumentsForRawGenericConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeArgumentsForRawGenericConstructor">TypeArgumentsForRawGenericConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777771</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeArgumentsForRawGenericMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeArgumentsForRawGenericMethod">TypeArgumentsForRawGenericMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777770</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeCollidesWithPackage"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeCollidesWithPackage">TypeCollidesWithPackage</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777538</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeHidingType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeHidingType">TypeHidingType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777249</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeHidingTypeParameterFromMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeHidingTypeParameterFromMethod">TypeHidingTypeParameterFromMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777793</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeHidingTypeParameterFromType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeHidingTypeParameterFromType">TypeHidingTypeParameterFromType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777792</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeMismatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeMismatch">TypeMismatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777233</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeMissingDeprecatedAnnotation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeMissingDeprecatedAnnotation">TypeMissingDeprecatedAnnotation</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871542</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeParameterHidingType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeParameterHidingType">TypeParameterHidingType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777787</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.TypeRelated"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#TypeRelated">TypeRelated</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777216</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnboxingConversion"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnboxingConversion">UnboxingConversion</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871633</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.Unclassified"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#Unclassified">Unclassified</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedAnnotationMember"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedAnnotationMember">UndefinedAnnotationMember</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109475</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedConstructor">UndefinedConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217858</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedConstructorInDefaultConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedConstructorInDefaultConstructor">UndefinedConstructorInDefaultConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217868</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedConstructorInImplicitConstructorCall"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedConstructorInImplicitConstructorCall">UndefinedConstructorInImplicitConstructorCall</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217871</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedField">UndefinedField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554502</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedFunction"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedFunction">UndefinedFunction</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108973</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedLabel"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedLabel">UndefinedLabel</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871086</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedMethod">UndefinedMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108964</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedName"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedName">UndefinedName</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425394</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedType">UndefinedType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777218</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndefinedTypeVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedTypeVariable">UndefinedTypeVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871450</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UndocumentedEmptyBlock"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndocumentedEmptyBlock">UndocumentedEmptyBlock</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871372</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnexpectedStaticModifierForField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnexpectedStaticModifierForField">UnexpectedStaticModifierForField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554778</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnexpectedStaticModifierForMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnexpectedStaticModifierForMethod">UnexpectedStaticModifierForMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109225</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnhandledException"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnhandledException">UnhandledException</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777384</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnhandledExceptionInDefaultConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnhandledExceptionInDefaultConstructor">UnhandledExceptionInDefaultConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777362</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnhandledExceptionInImplicitConstructorCall"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnhandledExceptionInImplicitConstructorCall">UnhandledExceptionInImplicitConstructorCall</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777363</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnhandledWarningToken"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnhandledWarningToken">UnhandledWarningToken</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871543</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UninitializedBlankFinalField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UninitializedBlankFinalField">UninitializedBlankFinalField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554513</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UninitializedLocalVariable"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UninitializedLocalVariable">UninitializedLocalVariable</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870963</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnmatchedBracket"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnmatchedBracket">UnmatchedBracket</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612956</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnnecessaryArgumentCast"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnnecessaryArgumentCast">UnnecessaryArgumentCast</A></CODE></TD>
-<TD ALIGN="right"><CODE>553648310</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnnecessaryCast"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnnecessaryCast">UnnecessaryCast</A></CODE></TD>
-<TD ALIGN="right"><CODE>553648309</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnnecessaryElse"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnnecessaryElse">UnnecessaryElse</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871101</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnnecessaryInstanceof"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnnecessaryInstanceof">UnnecessaryInstanceof</A></CODE></TD>
-<TD ALIGN="right"><CODE>553648311</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnnecessaryNLSTag"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnnecessaryNLSTag">UnnecessaryNLSTag</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871177</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnqualifiedFieldAccess"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnqualifiedFieldAccess">UnqualifiedFieldAccess</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425423</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnreachableCatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnreachableCatch">UnreachableCatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>83886247</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeGenericArrayForVarargs"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeGenericArrayForVarargs">UnsafeGenericArrayForVarargs</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109438</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeGenericCast"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeGenericCast">UnsafeGenericCast</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777761</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeRawConstructorInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeRawConstructorInvocation">UnsafeRawConstructorInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777746</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeRawFieldAssignment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeRawFieldAssignment">UnsafeRawFieldAssignment</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777752</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeRawGenericConstructorInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeRawGenericConstructorInvocation">UnsafeRawGenericConstructorInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777785</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeRawGenericMethodInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeRawGenericMethodInvocation">UnsafeRawGenericMethodInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777786</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeRawMethodInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeRawMethodInvocation">UnsafeRawMethodInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777747</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeReturnTypeOverride"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeReturnTypeOverride">UnsafeReturnTypeOverride</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109423</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnsafeTypeConversion"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnsafeTypeConversion">UnsafeTypeConversion</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777748</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnterminatedComment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnterminatedComment">UnterminatedComment</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612996</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnterminatedString"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnterminatedString">UnterminatedString</A></CODE></TD>
-<TD ALIGN="right"><CODE>1610612995</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnusedConstructorDeclaredThrownException"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnusedConstructorDeclaredThrownException">UnusedConstructorDeclaredThrownException</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871098</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnusedImport"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnusedImport">UnusedImport</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435844</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnusedLabel"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnusedLabel">UnusedLabel</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871111</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnusedMethodDeclaredThrownException"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnusedMethodDeclaredThrownException">UnusedMethodDeclaredThrownException</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871097</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnusedPrivateConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnusedPrivateConstructor">UnusedPrivateConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979910</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnusedPrivateField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnusedPrivateField">UnusedPrivateField</A></CODE></TD>
-<TD ALIGN="right"><CODE>570425421</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnusedPrivateMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnusedPrivateMethod">UnusedPrivateMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979894</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UnusedPrivateType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UnusedPrivateType">UnusedPrivateType</A></CODE></TD>
-<TD ALIGN="right"><CODE>553648135</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UseAssertAsAnIdentifier"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UseAssertAsAnIdentifier">UseAssertAsAnIdentifier</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871352</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UseEnumAsAnIdentifier"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UseEnumAsAnIdentifier">UseEnumAsAnIdentifier</A></CODE></TD>
-<TD ALIGN="right"><CODE>536871353</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UsingDeprecatedConstructor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UsingDeprecatedConstructor">UsingDeprecatedConstructor</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217861</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UsingDeprecatedField"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UsingDeprecatedField">UsingDeprecatedField</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554505</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UsingDeprecatedMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UsingDeprecatedMethod">UsingDeprecatedMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108967</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.UsingDeprecatedType"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UsingDeprecatedType">UsingDeprecatedType</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777221</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.VarargsConflict"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#VarargsConflict">VarargsConflict</A></CODE></TD>
-<TD ALIGN="right"><CODE>67109667</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.VariableTypeCannotBeVoid"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#VariableTypeCannotBeVoid">VariableTypeCannotBeVoid</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870964</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.VariableTypeCannotBeVoidArray"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#VariableTypeCannotBeVoidArray">VariableTypeCannotBeVoidArray</A></CODE></TD>
-<TD ALIGN="right"><CODE>536870965</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.VoidMethodReturnsValue"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#VoidMethodReturnsValue">VoidMethodReturnsValue</A></CODE></TD>
-<TD ALIGN="right"><CODE>67108969</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.WildcardConstructorInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#WildcardConstructorInvocation">WildcardConstructorInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777756</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.WildcardFieldAssignment"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#WildcardFieldAssignment">WildcardFieldAssignment</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777758</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.WildcardMethodInvocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#WildcardMethodInvocation">WildcardMethodInvocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777757</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.IProblem.WrongNumberOfArguments"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#WrongNumberOfArguments">WrongNumberOfArguments</A></CODE></TD>
-<TD ALIGN="right"><CODE>603979896</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.compiler.<A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html" title="interface in org.eclipse.wst.jsdt.core.compiler">ITerminalSymbols</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameabstract"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameabstract">TokenNameabstract</A></CODE></TD>
-<TD ALIGN="right"><CODE>98</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameAND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameAND">TokenNameAND</A></CODE></TD>
-<TD ALIGN="right"><CODE>62</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameAND_AND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameAND_AND">TokenNameAND_AND</A></CODE></TD>
-<TD ALIGN="right"><CODE>79</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameAND_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameAND_EQUAL">TokenNameAND_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>172</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameassert"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameassert">TokenNameassert</A></CODE></TD>
-<TD ALIGN="right"><CODE>118</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameAT">TokenNameAT</A></CODE></TD>
-<TD ALIGN="right"><CODE>401</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameboolean"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameboolean">TokenNameboolean</A></CODE></TD>
-<TD ALIGN="right"><CODE>18</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamebreak"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamebreak">TokenNamebreak</A></CODE></TD>
-<TD ALIGN="right"><CODE>119</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamebyte"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamebyte">TokenNamebyte</A></CODE></TD>
-<TD ALIGN="right"><CODE>19</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamecase"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamecase">TokenNamecase</A></CODE></TD>
-<TD ALIGN="right"><CODE>211</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamecatch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamecatch">TokenNamecatch</A></CODE></TD>
-<TD ALIGN="right"><CODE>225</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamechar"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamechar">TokenNamechar</A></CODE></TD>
-<TD ALIGN="right"><CODE>20</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameCharacterLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameCharacterLiteral">TokenNameCharacterLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>44</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameclass"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameclass">TokenNameclass</A></CODE></TD>
-<TD ALIGN="right"><CODE>165</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameCOLON"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameCOLON">TokenNameCOLON</A></CODE></TD>
-<TD ALIGN="right"><CODE>154</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameCOMMA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameCOMMA">TokenNameCOMMA</A></CODE></TD>
-<TD ALIGN="right"><CODE>90</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameCOMMENT_BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameCOMMENT_BLOCK">TokenNameCOMMENT_BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>1002</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameCOMMENT_JAVADOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameCOMMENT_JAVADOC">TokenNameCOMMENT_JAVADOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>1003</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameCOMMENT_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameCOMMENT_LINE">TokenNameCOMMENT_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1001</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameconst"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameconst">TokenNameconst</A></CODE></TD>
-<TD ALIGN="right"><CODE>403</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamecontinue"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamecontinue">TokenNamecontinue</A></CODE></TD>
-<TD ALIGN="right"><CODE>120</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamedebugger"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamedebugger">TokenNamedebugger</A></CODE></TD>
-<TD ALIGN="right"><CODE>453</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamedefault"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamedefault">TokenNamedefault</A></CODE></TD>
-<TD ALIGN="right"><CODE>212</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamedelete"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamedelete">TokenNamedelete</A></CODE></TD>
-<TD ALIGN="right"><CODE>452</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameDIVIDE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameDIVIDE">TokenNameDIVIDE</A></CODE></TD>
-<TD ALIGN="right"><CODE>10</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameDIVIDE_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameDIVIDE_EQUAL">TokenNameDIVIDE_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>171</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamedo"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamedo">TokenNamedo</A></CODE></TD>
-<TD ALIGN="right"><CODE>121</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameDOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameDOT">TokenNameDOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>6</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamedouble"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamedouble">TokenNamedouble</A></CODE></TD>
-<TD ALIGN="right"><CODE>21</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameDoubleLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameDoubleLiteral">TokenNameDoubleLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>43</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameELLIPSIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameELLIPSIS">TokenNameELLIPSIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>402</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameelse"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameelse">TokenNameelse</A></CODE></TD>
-<TD ALIGN="right"><CODE>213</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameenum"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameenum">TokenNameenum</A></CODE></TD>
-<TD ALIGN="right"><CODE>400</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameEOF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameEOF">TokenNameEOF</A></CODE></TD>
-<TD ALIGN="right"><CODE>158</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameEQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameEQUAL">TokenNameEQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>167</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameEQUAL_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameEQUAL_EQUAL">TokenNameEQUAL_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>35</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameEQUAL_EQUAL_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameEQUAL_EQUAL_EQUAL">TokenNameEQUAL_EQUAL_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>451</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameERROR">TokenNameERROR</A></CODE></TD>
-<TD ALIGN="right"><CODE>309</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameexport"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameexport">TokenNameexport</A></CODE></TD>
-<TD ALIGN="right"><CODE>454</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameextends"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameextends">TokenNameextends</A></CODE></TD>
-<TD ALIGN="right"><CODE>243</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamefalse"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamefalse">TokenNamefalse</A></CODE></TD>
-<TD ALIGN="right"><CODE>37</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamefinal"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamefinal">TokenNamefinal</A></CODE></TD>
-<TD ALIGN="right"><CODE>99</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamefinally"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamefinally">TokenNamefinally</A></CODE></TD>
-<TD ALIGN="right"><CODE>226</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamefloat"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamefloat">TokenNamefloat</A></CODE></TD>
-<TD ALIGN="right"><CODE>22</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameFloatingPointLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameFloatingPointLiteral">TokenNameFloatingPointLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>42</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamefor"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamefor">TokenNamefor</A></CODE></TD>
-<TD ALIGN="right"><CODE>122</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamefunction"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamefunction">TokenNamefunction</A></CODE></TD>
-<TD ALIGN="right"><CODE>455</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamegoto"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamegoto">TokenNamegoto</A></CODE></TD>
-<TD ALIGN="right"><CODE>404</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameGREATER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameGREATER">TokenNameGREATER</A></CODE></TD>
-<TD ALIGN="right"><CODE>68</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameGREATER_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameGREATER_EQUAL">TokenNameGREATER_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>67</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameIdentifier"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameIdentifier">TokenNameIdentifier</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameif"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameif">TokenNameif</A></CODE></TD>
-<TD ALIGN="right"><CODE>123</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameimplements"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameimplements">TokenNameimplements</A></CODE></TD>
-<TD ALIGN="right"><CODE>268</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameimport"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameimport">TokenNameimport</A></CODE></TD>
-<TD ALIGN="right"><CODE>191</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamein"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamein">TokenNamein</A></CODE></TD>
-<TD ALIGN="right"><CODE>456</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameinfinity"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameinfinity">TokenNameinfinity</A></CODE></TD>
-<TD ALIGN="right"><CODE>457</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameinstanceof"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameinstanceof">TokenNameinstanceof</A></CODE></TD>
-<TD ALIGN="right"><CODE>65</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameint"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameint">TokenNameint</A></CODE></TD>
-<TD ALIGN="right"><CODE>23</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameIntegerLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameIntegerLiteral">TokenNameIntegerLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>40</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameinterface"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameinterface">TokenNameinterface</A></CODE></TD>
-<TD ALIGN="right"><CODE>180</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameLBRACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameLBRACE">TokenNameLBRACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>110</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameLBRACKET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameLBRACKET">TokenNameLBRACKET</A></CODE></TD>
-<TD ALIGN="right"><CODE>15</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameLEFT_SHIFT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameLEFT_SHIFT">TokenNameLEFT_SHIFT</A></CODE></TD>
-<TD ALIGN="right"><CODE>14</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameLEFT_SHIFT_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameLEFT_SHIFT_EQUAL">TokenNameLEFT_SHIFT_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>176</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameLESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameLESS">TokenNameLESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>69</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameLESS_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameLESS_EQUAL">TokenNameLESS_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>66</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamelong"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamelong">TokenNamelong</A></CODE></TD>
-<TD ALIGN="right"><CODE>24</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameLongLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameLongLiteral">TokenNameLongLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>41</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameLPAREN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameLPAREN">TokenNameLPAREN</A></CODE></TD>
-<TD ALIGN="right"><CODE>7</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameMINUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameMINUS">TokenNameMINUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameMINUS_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameMINUS_EQUAL">TokenNameMINUS_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>169</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameMINUS_MINUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameMINUS_MINUS">TokenNameMINUS_MINUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameMULTIPLY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameMULTIPLY">TokenNameMULTIPLY</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameMULTIPLY_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameMULTIPLY_EQUAL">TokenNameMULTIPLY_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>170</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamenative"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamenative">TokenNamenative</A></CODE></TD>
-<TD ALIGN="right"><CODE>100</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamenew"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamenew">TokenNamenew</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameNOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameNOT">TokenNameNOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>71</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameNOT_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameNOT_EQUAL">TokenNameNOT_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>36</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameNOT_EQUAL_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameNOT_EQUAL_EQUAL">TokenNameNOT_EQUAL_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>450</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamenull"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamenull">TokenNamenull</A></CODE></TD>
-<TD ALIGN="right"><CODE>38</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameOR">TokenNameOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>70</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameOR_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameOR_EQUAL">TokenNameOR_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>173</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameOR_OR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameOR_OR">TokenNameOR_OR</A></CODE></TD>
-<TD ALIGN="right"><CODE>80</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamepackage"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamepackage">TokenNamepackage</A></CODE></TD>
-<TD ALIGN="right"><CODE>214</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamePLUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamePLUS">TokenNamePLUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamePLUS_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamePLUS_EQUAL">TokenNamePLUS_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>168</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamePLUS_PLUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamePLUS_PLUS">TokenNamePLUS_PLUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameprivate"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameprivate">TokenNameprivate</A></CODE></TD>
-<TD ALIGN="right"><CODE>101</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameprotected"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameprotected">TokenNameprotected</A></CODE></TD>
-<TD ALIGN="right"><CODE>102</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamepublic"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamepublic">TokenNamepublic</A></CODE></TD>
-<TD ALIGN="right"><CODE>103</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameQUESTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameQUESTION">TokenNameQUESTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>81</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameRBRACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameRBRACE">TokenNameRBRACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>95</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameRBRACKET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameRBRACKET">TokenNameRBRACKET</A></CODE></TD>
-<TD ALIGN="right"><CODE>166</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameRegExLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameRegExLiteral">TokenNameRegExLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>46</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameREMAINDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameREMAINDER">TokenNameREMAINDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>9</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameREMAINDER_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameREMAINDER_EQUAL">TokenNameREMAINDER_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>175</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamereturn"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamereturn">TokenNamereturn</A></CODE></TD>
-<TD ALIGN="right"><CODE>124</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameRIGHT_SHIFT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameRIGHT_SHIFT">TokenNameRIGHT_SHIFT</A></CODE></TD>
-<TD ALIGN="right"><CODE>11</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameRIGHT_SHIFT_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameRIGHT_SHIFT_EQUAL">TokenNameRIGHT_SHIFT_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>177</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameRPAREN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameRPAREN">TokenNameRPAREN</A></CODE></TD>
-<TD ALIGN="right"><CODE>86</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameSEMICOLON"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameSEMICOLON">TokenNameSEMICOLON</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameshort"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameshort">TokenNameshort</A></CODE></TD>
-<TD ALIGN="right"><CODE>25</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamestatic"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamestatic">TokenNamestatic</A></CODE></TD>
-<TD ALIGN="right"><CODE>94</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamestrictfp"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamestrictfp">TokenNamestrictfp</A></CODE></TD>
-<TD ALIGN="right"><CODE>104</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameStringLiteral"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameStringLiteral">TokenNameStringLiteral</A></CODE></TD>
-<TD ALIGN="right"><CODE>45</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamesuper"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamesuper">TokenNamesuper</A></CODE></TD>
-<TD ALIGN="right"><CODE>33</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameswitch"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameswitch">TokenNameswitch</A></CODE></TD>
-<TD ALIGN="right"><CODE>125</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamesynchronized"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamesynchronized">TokenNamesynchronized</A></CODE></TD>
-<TD ALIGN="right"><CODE>85</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamethis"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamethis">TokenNamethis</A></CODE></TD>
-<TD ALIGN="right"><CODE>34</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamethrow"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamethrow">TokenNamethrow</A></CODE></TD>
-<TD ALIGN="right"><CODE>126</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamethrows"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamethrows">TokenNamethrows</A></CODE></TD>
-<TD ALIGN="right"><CODE>227</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNametransient"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNametransient">TokenNametransient</A></CODE></TD>
-<TD ALIGN="right"><CODE>105</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNametrue"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNametrue">TokenNametrue</A></CODE></TD>
-<TD ALIGN="right"><CODE>39</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNametry"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNametry">TokenNametry</A></CODE></TD>
-<TD ALIGN="right"><CODE>127</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameTWIDDLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameTWIDDLE">TokenNameTWIDDLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>72</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNametypeof"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNametypeof">TokenNametypeof</A></CODE></TD>
-<TD ALIGN="right"><CODE>458</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameundefined"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameundefined">TokenNameundefined</A></CODE></TD>
-<TD ALIGN="right"><CODE>459</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameUNSIGNED_RIGHT_SHIFT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameUNSIGNED_RIGHT_SHIFT">TokenNameUNSIGNED_RIGHT_SHIFT</A></CODE></TD>
-<TD ALIGN="right"><CODE>12</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameUNSIGNED_RIGHT_SHIFT_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameUNSIGNED_RIGHT_SHIFT_EQUAL">TokenNameUNSIGNED_RIGHT_SHIFT_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>178</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamevar"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamevar">TokenNamevar</A></CODE></TD>
-<TD ALIGN="right"><CODE>460</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamevoid"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamevoid">TokenNamevoid</A></CODE></TD>
-<TD ALIGN="right"><CODE>26</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamevolatile"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamevolatile">TokenNamevolatile</A></CODE></TD>
-<TD ALIGN="right"><CODE>106</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamewhile"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamewhile">TokenNamewhile</A></CODE></TD>
-<TD ALIGN="right"><CODE>117</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameWHITESPACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameWHITESPACE">TokenNameWHITESPACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1000</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNamewith"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNamewith">TokenNamewith</A></CODE></TD>
-<TD ALIGN="right"><CODE>461</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameXOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameXOR">TokenNameXOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>63</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.compiler.ITerminalSymbols.TokenNameXOR_EQUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/compiler/ITerminalSymbols.html#TokenNameXOR_EQUAL">TokenNameXOR_EQUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>174</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.dom.<A HREF="org/eclipse/wst/jsdt/core/dom/AST.html" title="class in org.eclipse.wst.jsdt.core.dom">AST</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.AST.JLS2"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#JLS2">JLS2</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.AST.JLS3"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#JLS3">JLS3</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.dom.<A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ANONYMOUS_CLASS_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ANONYMOUS_CLASS_DECLARATION">ANONYMOUS_CLASS_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ARRAY_ACCESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ARRAY_ACCESS">ARRAY_ACCESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ARRAY_CREATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ARRAY_CREATION">ARRAY_CREATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ARRAY_INITIALIZER">ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ARRAY_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ARRAY_TYPE">ARRAY_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ASSERT_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ASSERT_STATEMENT">ASSERT_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>6</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ASSIGNMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ASSIGNMENT">ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>7</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#BLOCK">BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.BLOCK_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#BLOCK_COMMENT">BLOCK_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.BOOLEAN_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#BOOLEAN_LITERAL">BOOLEAN_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>9</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.BREAK_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#BREAK_STATEMENT">BREAK_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>10</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.CAST_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#CAST_EXPRESSION">CAST_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>11</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.CATCH_CLAUSE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#CATCH_CLAUSE">CATCH_CLAUSE</A></CODE></TD>
-<TD ALIGN="right"><CODE>12</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.CHARACTER_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#CHARACTER_LITERAL">CHARACTER_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>13</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.CLASS_INSTANCE_CREATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#CLASS_INSTANCE_CREATION">CLASS_INSTANCE_CREATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>14</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.CONDITIONAL_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#CONDITIONAL_EXPRESSION">CONDITIONAL_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.CONSTRUCTOR_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#CONSTRUCTOR_INVOCATION">CONSTRUCTOR_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>17</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.CONTINUE_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#CONTINUE_STATEMENT">CONTINUE_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>18</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.DO_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#DO_STATEMENT">DO_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>19</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.EMPTY_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#EMPTY_EXPRESSION">EMPTY_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>92</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.EMPTY_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#EMPTY_STATEMENT">EMPTY_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>20</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ENHANCED_FOR_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ENHANCED_FOR_STATEMENT">ENHANCED_FOR_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>70</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.EXPRESSION_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#EXPRESSION_STATEMENT">EXPRESSION_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>21</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FIELD_ACCESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FIELD_ACCESS">FIELD_ACCESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>22</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FIELD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FIELD_DECLARATION">FIELD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>23</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FOR_IN_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FOR_IN_STATEMENT">FOR_IN_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>83</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FOR_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FOR_STATEMENT">FOR_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>24</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FUNCTION_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FUNCTION_DECLARATION">FUNCTION_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>31</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FUNCTION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FUNCTION_EXPRESSION">FUNCTION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>84</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FUNCTION_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FUNCTION_INVOCATION">FUNCTION_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FUNCTION_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FUNCTION_REF">FUNCTION_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>68</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.FUNCTION_REF_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#FUNCTION_REF_PARAMETER">FUNCTION_REF_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>69</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.IF_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#IF_STATEMENT">IF_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>25</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.IMPORT_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#IMPORT_DECLARATION">IMPORT_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>26</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.INFERRED_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#INFERRED_TYPE">INFERRED_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>89</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.INFIX_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#INFIX_EXPRESSION">INFIX_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>27</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#INITIALIZER">INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>28</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.INSTANCEOF_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#INSTANCEOF_EXPRESSION">INSTANCEOF_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>62</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.JAVASCRIPT_UNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#JAVASCRIPT_UNIT">JAVASCRIPT_UNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>15</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.JSDOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#JSDOC">JSDOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>29</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.LABELED_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#LABELED_STATEMENT">LABELED_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>30</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.LINE_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#LINE_COMMENT">LINE_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>63</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.LIST_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#LIST_EXPRESSION">LIST_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>91</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.MALFORMED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#MALFORMED">MALFORMED</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.MEMBER_REF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#MEMBER_REF">MEMBER_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>67</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.MODIFIER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#MODIFIER">MODIFIER</A></CODE></TD>
-<TD ALIGN="right"><CODE>100</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.NULL_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#NULL_LITERAL">NULL_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>33</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.NUMBER_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#NUMBER_LITERAL">NUMBER_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>34</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.OBJECT_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#OBJECT_LITERAL">OBJECT_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>85</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.OBJECT_LITERAL_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#OBJECT_LITERAL_FIELD">OBJECT_LITERAL_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>86</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.ORIGINAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#ORIGINAL">ORIGINAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.PACKAGE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#PACKAGE_DECLARATION">PACKAGE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>35</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.PARAMETERIZED_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#PARAMETERIZED_TYPE">PARAMETERIZED_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>74</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.PARENTHESIZED_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#PARENTHESIZED_EXPRESSION">PARENTHESIZED_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>36</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.POSTFIX_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#POSTFIX_EXPRESSION">POSTFIX_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>37</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.PREFIX_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#PREFIX_EXPRESSION">PREFIX_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>38</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.PRIMITIVE_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#PRIMITIVE_TYPE">PRIMITIVE_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>39</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.PROTECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#PROTECT">PROTECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.QUALIFIED_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#QUALIFIED_NAME">QUALIFIED_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>40</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.QUALIFIED_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#QUALIFIED_TYPE">QUALIFIED_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>75</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.RECOVERED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#RECOVERED">RECOVERED</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.REGULAR_EXPRESSION_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#REGULAR_EXPRESSION_LITERAL">REGULAR_EXPRESSION_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>88</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.RETURN_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#RETURN_STATEMENT">RETURN_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>41</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.SIMPLE_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#SIMPLE_NAME">SIMPLE_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>42</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.SIMPLE_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#SIMPLE_TYPE">SIMPLE_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>43</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.SINGLE_VARIABLE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#SINGLE_VARIABLE_DECLARATION">SINGLE_VARIABLE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>44</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.STRING_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#STRING_LITERAL">STRING_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>45</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.SUPER_CONSTRUCTOR_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#SUPER_CONSTRUCTOR_INVOCATION">SUPER_CONSTRUCTOR_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>46</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.SUPER_FIELD_ACCESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#SUPER_FIELD_ACCESS">SUPER_FIELD_ACCESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>47</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.SUPER_METHOD_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#SUPER_METHOD_INVOCATION">SUPER_METHOD_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>48</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.SWITCH_CASE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#SWITCH_CASE">SWITCH_CASE</A></CODE></TD>
-<TD ALIGN="right"><CODE>49</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.SWITCH_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#SWITCH_STATEMENT">SWITCH_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>50</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.TAG_ELEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#TAG_ELEMENT">TAG_ELEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>65</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.TEXT_ELEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#TEXT_ELEMENT">TEXT_ELEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>66</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.THIS_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#THIS_EXPRESSION">THIS_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>52</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.THROW_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#THROW_STATEMENT">THROW_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>53</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.TRY_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#TRY_STATEMENT">TRY_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>54</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#TYPE_DECLARATION">TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>55</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.TYPE_DECLARATION_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#TYPE_DECLARATION_STATEMENT">TYPE_DECLARATION_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>56</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.TYPE_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#TYPE_LITERAL">TYPE_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>57</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.TYPE_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#TYPE_PARAMETER">TYPE_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>73</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.UNDEFINED_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#UNDEFINED_LITERAL">UNDEFINED_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>87</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.VARIABLE_DECLARATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#VARIABLE_DECLARATION_EXPRESSION">VARIABLE_DECLARATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>58</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.VARIABLE_DECLARATION_FRAGMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#VARIABLE_DECLARATION_FRAGMENT">VARIABLE_DECLARATION_FRAGMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>59</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.VARIABLE_DECLARATION_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#VARIABLE_DECLARATION_STATEMENT">VARIABLE_DECLARATION_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>60</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.WHILE_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#WHILE_STATEMENT">WHILE_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>61</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.WILDCARD_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#WILDCARD_TYPE">WILDCARD_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>76</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTNode.WITH_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTNode.html#WITH_STATEMENT">WITH_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>90</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.dom.<A HREF="org/eclipse/wst/jsdt/core/dom/ASTParser.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTParser</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTParser.K_CLASS_BODY_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTParser.html#K_CLASS_BODY_DECLARATIONS">K_CLASS_BODY_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTParser.K_COMPILATION_UNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTParser.html#K_COMPILATION_UNIT">K_COMPILATION_UNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTParser.K_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTParser.html#K_EXPRESSION">K_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.ASTParser.K_STATEMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/ASTParser.html#K_STATEMENTS">K_STATEMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.dom.<A HREF="org/eclipse/wst/jsdt/core/dom/IBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom">IBinding</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.IBinding.METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/IBinding.html#METHOD">METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.IBinding.PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/IBinding.html#PACKAGE">PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.IBinding.TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/IBinding.html#TYPE">TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.IBinding.VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/IBinding.html#VARIABLE">VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.dom.<A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html" title="class in org.eclipse.wst.jsdt.core.dom">Modifier</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.ABSTRACT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#ABSTRACT">ABSTRACT</A></CODE></TD>
-<TD ALIGN="right"><CODE>1024</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.FINAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#FINAL">FINAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.NATIVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#NATIVE">NATIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.NONE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#NONE">NONE</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#PRIVATE">PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#PROTECTED">PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.PUBLIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#PUBLIC">PUBLIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.STATIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#STATIC">STATIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.STRICTFP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#STRICTFP">STRICTFP</A></CODE></TD>
-<TD ALIGN="right"><CODE>2048</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.SYNCHRONIZED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#SYNCHRONIZED">SYNCHRONIZED</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.TRANSIENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#TRANSIENT">TRANSIENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.Modifier.VOLATILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/Modifier.html#VOLATILE">VOLATILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.dom.<A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html" title="class in org.eclipse.wst.jsdt.core.dom">TagElement</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_AUTHOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_AUTHOR">TAG_AUTHOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@author"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_CODE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_CODE">TAG_CODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@code"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_DEPRECATED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_DEPRECATED">TAG_DEPRECATED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@deprecated"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_DOCROOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_DOCROOT">TAG_DOCROOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@docRoot"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_EXCEPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_EXCEPTION">TAG_EXCEPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@exception"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_INHERITDOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_INHERITDOC">TAG_INHERITDOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@inheritDoc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_LINK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_LINK">TAG_LINK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@link"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_LINKPLAIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_LINKPLAIN">TAG_LINKPLAIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@linkplain"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_LITERAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_LITERAL">TAG_LITERAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@literal"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_PARAM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_PARAM">TAG_PARAM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@param"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_RETURN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_RETURN">TAG_RETURN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@return"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_SEE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_SEE">TAG_SEE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@see"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_SERIAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_SERIAL">TAG_SERIAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@serial"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_SERIALDATA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_SERIALDATA">TAG_SERIALDATA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@serialData"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_SERIALFIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_SERIALFIELD">TAG_SERIALFIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@serialField"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_SINCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_SINCE">TAG_SINCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>" "</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_THROWS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_THROWS">TAG_THROWS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@throws"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_VALUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_VALUE">TAG_VALUE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@value"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.TagElement.TAG_VERSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/TagElement.html#TAG_VERSION">TAG_VERSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"@version"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite.ImportRewriteContext</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext.KIND_STATIC_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#KIND_STATIC_FIELD">KIND_STATIC_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext.KIND_STATIC_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#KIND_STATIC_METHOD">KIND_STATIC_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext.KIND_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#KIND_TYPE">KIND_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext.RES_NAME_CONFLICT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#RES_NAME_CONFLICT">RES_NAME_CONFLICT</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext.RES_NAME_FOUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#RES_NAME_FOUND">RES_NAME_FOUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext.RES_NAME_UNKNOWN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#RES_NAME_UNKNOWN">RES_NAME_UNKNOWN</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.eval.<A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html" title="interface in org.eclipse.wst.jsdt.core.eval">ICodeSnippetRequestor</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.CODE_SNIPPET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#CODE_SNIPPET">CODE_SNIPPET</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.DELEGATE_THIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#DELEGATE_THIS">DELEGATE_THIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"val$this"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.IMPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#IMPORT">IMPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.INTERNAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#INTERNAL">INTERNAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.LOCAL_VAR_PREFIX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#LOCAL_VAR_PREFIX">LOCAL_VAR_PREFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"val$"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#PACKAGE">PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.RESULT_TYPE_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#RESULT_TYPE_FIELD">RESULT_TYPE_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"resultType"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.RESULT_VALUE_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#RESULT_VALUE_FIELD">RESULT_VALUE_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"resultValue"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.RUN_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#RUN_METHOD">RUN_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"run"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.eval.ICodeSnippetRequestor.VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#VARIABLE">VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.formatter.<A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html" title="class in org.eclipse.wst.jsdt.core.formatter">CodeFormatter</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.CodeFormatter.K_CLASS_BODY_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_CLASS_BODY_DECLARATIONS">K_CLASS_BODY_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.CodeFormatter.K_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_EXPRESSION">K_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.CodeFormatter.K_JAVA_DOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_JAVA_DOC">K_JAVA_DOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.CodeFormatter.K_JAVASCRIPT_UNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_JAVASCRIPT_UNIT">K_JAVASCRIPT_UNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.CodeFormatter.K_MULTI_LINE_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_MULTI_LINE_COMMENT">K_MULTI_LINE_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.CodeFormatter.K_SINGLE_LINE_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_SINGLE_LINE_COMMENT">K_SINGLE_LINE_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.CodeFormatter.K_STATEMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_STATEMENTS">K_STATEMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.CodeFormatter.K_UNKNOWN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_UNKNOWN">K_UNKNOWN</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.formatter.<A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html" title="class in org.eclipse.wst.jsdt.core.formatter">DefaultCodeFormatterConstants</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.END_OF_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#END_OF_LINE">END_OF_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"end_of_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FALSE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FALSE">FALSE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"false"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGN_TYPE_MEMBERS_ON_COLUMNS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGN_TYPE_MEMBERS_ON_COLUMNS">FORMATTER_ALIGN_TYPE_MEMBERS_ON_COLUMNS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.align_type_members_on_columns"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ALLOCATION_EXPRESSION">FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_arguments_in_allocation_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT">FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_arguments_in_enum_constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_EXPLICIT_CONSTRUCTOR_CALL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_EXPLICIT_CONSTRUCTOR_CALL">FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_EXPLICIT_CONSTRUCTOR_CALL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_METHOD_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_METHOD_INVOCATION">FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_METHOD_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_arguments_in_method_invocation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_QUALIFIED_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_QUALIFIED_ALLOCATION_EXPRESSION">FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_QUALIFIED_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ASSIGNMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_ASSIGNMENT">FORMATTER_ALIGNMENT_FOR_ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_assignment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION">FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_binary_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_COMPACT_IF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_COMPACT_IF">FORMATTER_ALIGNMENT_FOR_COMPACT_IF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_compact_if"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION">FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_conditional_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ENUM_CONSTANTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_ENUM_CONSTANTS">FORMATTER_ALIGNMENT_FOR_ENUM_CONSTANTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_enum_constants"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_ARRAY_INITIALIZER">FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_expressions_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS">FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_multiple_fields"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_CONSTRUCTOR_DECLARATION">FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_parameters_in_constructor_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_METHOD_DECLARATION">FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_parameters_in_method_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SELECTOR_IN_METHOD_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_SELECTOR_IN_METHOD_INVOCATION">FORMATTER_ALIGNMENT_FOR_SELECTOR_IN_METHOD_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_selector_in_method_invocation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERCLASS_IN_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_SUPERCLASS_IN_TYPE_DECLARATION">FORMATTER_ALIGNMENT_FOR_SUPERCLASS_IN_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_superclass_in_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION">FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_TYPE_DECLARATION">FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_superinterfaces_in_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_CONSTRUCTOR_DECLARATION">FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_METHOD_DECLARATION">FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.alignment_for_throws_clause_in_method_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_AFTER_IMPORTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_AFTER_IMPORTS">FORMATTER_BLANK_LINES_AFTER_IMPORTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_after_imports"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_AFTER_PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_AFTER_PACKAGE">FORMATTER_BLANK_LINES_AFTER_PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_after_package"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_AT_BEGINNING_OF_METHOD_BODY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_AT_BEGINNING_OF_METHOD_BODY">FORMATTER_BLANK_LINES_AT_BEGINNING_OF_METHOD_BODY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BEFORE_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BEFORE_FIELD">FORMATTER_BLANK_LINES_BEFORE_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_before_field"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BEFORE_FIRST_CLASS_BODY_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BEFORE_FIRST_CLASS_BODY_DECLARATION">FORMATTER_BLANK_LINES_BEFORE_FIRST_CLASS_BODY_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_before_first_class_body_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BEFORE_IMPORTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BEFORE_IMPORTS">FORMATTER_BLANK_LINES_BEFORE_IMPORTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_before_imports"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BEFORE_MEMBER_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BEFORE_MEMBER_TYPE">FORMATTER_BLANK_LINES_BEFORE_MEMBER_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_before_member_type"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BEFORE_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BEFORE_METHOD">FORMATTER_BLANK_LINES_BEFORE_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_before_method"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BEFORE_NEW_CHUNK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BEFORE_NEW_CHUNK">FORMATTER_BLANK_LINES_BEFORE_NEW_CHUNK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_before_new_chunk"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BEFORE_PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BEFORE_PACKAGE">FORMATTER_BLANK_LINES_BEFORE_PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_before_package"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BETWEEN_IMPORT_GROUPS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BETWEEN_IMPORT_GROUPS">FORMATTER_BLANK_LINES_BETWEEN_IMPORT_GROUPS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_between_import_groups"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BLANK_LINES_BETWEEN_TYPE_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BLANK_LINES_BETWEEN_TYPE_DECLARATIONS">FORMATTER_BLANK_LINES_BETWEEN_TYPE_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.blank_lines_between_type_declarations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_ANNOTATION_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_ANNOTATION_TYPE_DECLARATION">FORMATTER_BRACE_POSITION_FOR_ANNOTATION_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_annotation_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION">FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_anonymous_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_ARRAY_INITIALIZER">FORMATTER_BRACE_POSITION_FOR_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_BLOCK">FORMATTER_BRACE_POSITION_FOR_BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_block"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_BLOCK_IN_CASE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_BLOCK_IN_CASE">FORMATTER_BRACE_POSITION_FOR_BLOCK_IN_CASE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_block_in_case"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION">FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_constructor_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_ENUM_CONSTANT">FORMATTER_BRACE_POSITION_FOR_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_enum_constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_ENUM_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_ENUM_DECLARATION">FORMATTER_BRACE_POSITION_FOR_ENUM_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_enum_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION">FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_method_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_OBJLIT_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_OBJLIT_INITIALIZER">FORMATTER_BRACE_POSITION_FOR_OBJLIT_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_objlit_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_SWITCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_SWITCH">FORMATTER_BRACE_POSITION_FOR_SWITCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_switch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION">FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.brace_position_for_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_CLEAR_BLANK_LINES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_CLEAR_BLANK_LINES">FORMATTER_COMMENT_CLEAR_BLANK_LINES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.clear_blank_lines"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_BLOCK_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_BLOCK_COMMENT">FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_BLOCK_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.clear_blank_lines_in_block_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_JAVADOC_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_JAVADOC_COMMENT">FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_JAVADOC_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT">FORMATTER_COMMENT_FORMAT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.format_comments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_BLOCK_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_BLOCK_COMMENT">FORMATTER_COMMENT_FORMAT_BLOCK_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.format_block_comments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_HEADER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_HEADER">FORMATTER_COMMENT_FORMAT_HEADER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.format_header"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_HTML"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_HTML">FORMATTER_COMMENT_FORMAT_HTML</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.format_html"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_JAVADOC_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_JAVADOC_COMMENT">FORMATTER_COMMENT_FORMAT_JAVADOC_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.format_javadoc_comments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_LINE_COMMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_LINE_COMMENT">FORMATTER_COMMENT_FORMAT_LINE_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.format_line_comments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_SOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_SOURCE">FORMATTER_COMMENT_FORMAT_SOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.format_source_code"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION">FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.indent_parameter_description"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_INDENT_ROOT_TAGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_INDENT_ROOT_TAGS">FORMATTER_COMMENT_INDENT_ROOT_TAGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.indent_root_tags"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_INSERT_EMPTY_LINE_BEFORE_ROOT_TAGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_INSERT_EMPTY_LINE_BEFORE_ROOT_TAGS">FORMATTER_COMMENT_INSERT_EMPTY_LINE_BEFORE_ROOT_TAGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.insert_new_line_before_root_tags"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_INSERT_NEW_LINE_FOR_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_INSERT_NEW_LINE_FOR_PARAMETER">FORMATTER_COMMENT_INSERT_NEW_LINE_FOR_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.insert_new_line_for_parameter"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_LINE_LENGTH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_LINE_LENGTH">FORMATTER_COMMENT_LINE_LENGTH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.comment.line_length"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMPACT_ELSE_IF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMPACT_ELSE_IF">FORMATTER_COMPACT_ELSE_IF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.compact_else_if"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_CONTINUATION_INDENTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_CONTINUATION_INDENTATION">FORMATTER_CONTINUATION_INDENTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.continuation_indentation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_CONTINUATION_INDENTATION_FOR_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_CONTINUATION_INDENTATION_FOR_ARRAY_INITIALIZER">FORMATTER_CONTINUATION_INDENTATION_FOR_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.continuation_indentation_for_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_CONTINUATION_INDENTATION_FOR_OBJLIT_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_CONTINUATION_INDENTATION_FOR_OBJLIT_INITIALIZER">FORMATTER_CONTINUATION_INDENTATION_FOR_OBJLIT_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.continuation_indentation_for_objlit_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ANNOTATION_DECLARATION_HEADER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ANNOTATION_DECLARATION_HEADER">FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ANNOTATION_DECLARATION_HEADER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_CONSTANT_HEADER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_CONSTANT_HEADER">FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_CONSTANT_HEADER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_DECLARATION_HEADER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_DECLARATION_HEADER">FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_DECLARATION_HEADER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_TYPE_HEADER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_TYPE_HEADER">FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_TYPE_HEADER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_body_declarations_compare_to_type_header"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_BREAKS_COMPARE_TO_CASES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_BREAKS_COMPARE_TO_CASES">FORMATTER_INDENT_BREAKS_COMPARE_TO_CASES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_breaks_compare_to_cases"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_EMPTY_LINES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_EMPTY_LINES">FORMATTER_INDENT_EMPTY_LINES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_empty_lines"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BLOCK">FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_statements_compare_to_block"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BODY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BODY">FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BODY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_statements_compare_to_body"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_CASES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_CASES">FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_CASES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_switchstatements_compare_to_cases"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_SWITCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_SWITCH">FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_SWITCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indent_switchstatements_compare_to_switch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INDENTATION_SIZE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INDENTATION_SIZE">FORMATTER_INDENTATION_SIZE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.indentation.size"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION">FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_after_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_AFTER_COMMA_IN_OBJLIT_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_AFTER_COMMA_IN_OBJLIT_INITIALIZER">FORMATTER_INSERT_NEW_LINE_AFTER_COMMA_IN_OBJLIT_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_after_comma_in_objlit_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_AFTER_OPENING_BRACE_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_AFTER_OPENING_BRACE_IN_ARRAY_INITIALIZER">FORMATTER_INSERT_NEW_LINE_AFTER_OPENING_BRACE_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_AFTER_OPENING_BRACE_IN_OBJLIT_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_AFTER_OPENING_BRACE_IN_OBJLIT_INITIALIZER">FORMATTER_INSERT_NEW_LINE_AFTER_OPENING_BRACE_IN_OBJLIT_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_after_opening_brace_in_objlit_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_AT_END_OF_FILE_IF_MISSING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_AT_END_OF_FILE_IF_MISSING">FORMATTER_INSERT_NEW_LINE_AT_END_OF_FILE_IF_MISSING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_at_end_of_file_if_missing"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_BEFORE_CATCH_IN_TRY_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_BEFORE_CATCH_IN_TRY_STATEMENT">FORMATTER_INSERT_NEW_LINE_BEFORE_CATCH_IN_TRY_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_before_catch_in_try_statement"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_BEFORE_CLOSING_BRACE_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_BEFORE_CLOSING_BRACE_IN_ARRAY_INITIALIZER">FORMATTER_INSERT_NEW_LINE_BEFORE_CLOSING_BRACE_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_BEFORE_CLOSING_BRACE_IN_OBJLIT_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_BEFORE_CLOSING_BRACE_IN_OBJLIT_INITIALIZER">FORMATTER_INSERT_NEW_LINE_BEFORE_CLOSING_BRACE_IN_OBJLIT_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_before_closing_brace_in_objlit_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_BEFORE_ELSE_IN_IF_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_BEFORE_ELSE_IN_IF_STATEMENT">FORMATTER_INSERT_NEW_LINE_BEFORE_ELSE_IN_IF_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_before_else_in_if_statement"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_BEFORE_FINALLY_IN_TRY_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_BEFORE_FINALLY_IN_TRY_STATEMENT">FORMATTER_INSERT_NEW_LINE_BEFORE_FINALLY_IN_TRY_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_before_finally_in_try_statement"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_BEFORE_WHILE_IN_DO_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_BEFORE_WHILE_IN_DO_STATEMENT">FORMATTER_INSERT_NEW_LINE_BEFORE_WHILE_IN_DO_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_before_while_in_do_statement"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ANNOTATION_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ANNOTATION_DECLARATION">FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ANNOTATION_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_in_empty_annotation_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ANONYMOUS_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ANONYMOUS_TYPE_DECLARATION">FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ANONYMOUS_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_IN_EMPTY_BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_IN_EMPTY_BLOCK">FORMATTER_INSERT_NEW_LINE_IN_EMPTY_BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_in_empty_block"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ENUM_CONSTANT">FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_in_empty_enum_constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ENUM_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ENUM_DECLARATION">FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ENUM_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_in_empty_enum_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_IN_EMPTY_METHOD_BODY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_IN_EMPTY_METHOD_BODY">FORMATTER_INSERT_NEW_LINE_IN_EMPTY_METHOD_BODY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_in_empty_method_body"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_NEW_LINE_IN_EMPTY_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_NEW_LINE_IN_EMPTY_TYPE_DECLARATION">FORMATTER_INSERT_NEW_LINE_IN_EMPTY_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_new_line_in_empty_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_AND_IN_TYPE_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_AND_IN_TYPE_PARAMETER">FORMATTER_INSERT_SPACE_AFTER_AND_IN_TYPE_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_and_in_type_parameter"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_ASSIGNMENT_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_ASSIGNMENT_OPERATOR">FORMATTER_INSERT_SPACE_AFTER_ASSIGNMENT_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_assignment_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_AT_IN_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_AT_IN_ANNOTATION">FORMATTER_INSERT_SPACE_AFTER_AT_IN_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_at_in_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_AT_IN_ANNOTATION_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_AT_IN_ANNOTATION_TYPE_DECLARATION">FORMATTER_INSERT_SPACE_AFTER_AT_IN_ANNOTATION_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_at_in_annotation_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_BINARY_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_BINARY_OPERATOR">FORMATTER_INSERT_SPACE_AFTER_BINARY_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_binary_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_CLOSING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_CLOSING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS">FORMATTER_INSERT_SPACE_AFTER_CLOSING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_CLOSING_ANGLE_BRACKET_IN_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_CLOSING_ANGLE_BRACKET_IN_TYPE_PARAMETERS">FORMATTER_INSERT_SPACE_AFTER_CLOSING_ANGLE_BRACKET_IN_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_CLOSING_BRACE_IN_BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_CLOSING_BRACE_IN_BLOCK">FORMATTER_INSERT_SPACE_AFTER_CLOSING_BRACE_IN_BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_closing_brace_in_block"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_CLOSING_PAREN_IN_CAST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_CLOSING_PAREN_IN_CAST">FORMATTER_INSERT_SPACE_AFTER_CLOSING_PAREN_IN_CAST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_closing_paren_in_cast"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COLON_IN_ASSERT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COLON_IN_ASSERT">FORMATTER_INSERT_SPACE_AFTER_COLON_IN_ASSERT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_colon_in_assert"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COLON_IN_CASE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COLON_IN_CASE">FORMATTER_INSERT_SPACE_AFTER_COLON_IN_CASE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_colon_in_case"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COLON_IN_CONDITIONAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COLON_IN_CONDITIONAL">FORMATTER_INSERT_SPACE_AFTER_COLON_IN_CONDITIONAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_colon_in_conditional"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COLON_IN_FOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COLON_IN_FOR">FORMATTER_INSERT_SPACE_AFTER_COLON_IN_FOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_colon_in_for"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COLON_IN_LABELED_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COLON_IN_LABELED_STATEMENT">FORMATTER_INSERT_SPACE_AFTER_COLON_IN_LABELED_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_colon_in_labeled_statement"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ALLOCATION_EXPRESSION">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_allocation_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ANNOTATION">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ARRAY_INITIALIZER">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_CONSTRUCTOR_DECLARATION_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_CONSTRUCTOR_DECLARATION_PARAMETERS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_CONSTRUCTOR_DECLARATION_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_CONSTRUCTOR_DECLARATION_THROWS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_CONSTRUCTOR_DECLARATION_THROWS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_CONSTRUCTOR_DECLARATION_THROWS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ENUM_CONSTANT_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ENUM_CONSTANT_ARGUMENTS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ENUM_CONSTANT_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ENUM_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ENUM_DECLARATIONS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ENUM_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_enum_declarations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_EXPLICIT_CONSTRUCTOR_CALL_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_EXPLICIT_CONSTRUCTOR_CALL_ARGUMENTS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_EXPLICIT_CONSTRUCTOR_CALL_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_FOR_INCREMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_FOR_INCREMENTS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_FOR_INCREMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_for_increments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_FOR_INITS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_FOR_INITS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_FOR_INITS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_for_inits"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_DECLARATION_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_DECLARATION_PARAMETERS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_DECLARATION_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_DECLARATION_THROWS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_DECLARATION_THROWS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_DECLARATION_THROWS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_method_declaration_throws"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_INVOCATION_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_INVOCATION_ARGUMENTS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_INVOCATION_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_MULTIPLE_FIELD_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_MULTIPLE_FIELD_DECLARATIONS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_MULTIPLE_FIELD_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_MULTIPLE_LOCAL_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_MULTIPLE_LOCAL_DECLARATIONS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_MULTIPLE_LOCAL_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_PARAMETERIZED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_PARAMETERIZED_TYPE_REFERENCE">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_PARAMETERIZED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_SUPERINTERFACES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_SUPERINTERFACES">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_SUPERINTERFACES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_superinterfaces"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_TYPE_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_TYPE_ARGUMENTS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_TYPE_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_type_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_TYPE_PARAMETERS">FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_comma_in_type_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_ELLIPSIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_ELLIPSIS">FORMATTER_INSERT_SPACE_AFTER_ELLIPSIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_ellipsis"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE">FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS">FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_TYPE_PARAMETERS">FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACE_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACE_IN_ARRAY_INITIALIZER">FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACE_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_brace_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION">FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACKET_IN_ARRAY_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACKET_IN_ARRAY_REFERENCE">FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACKET_IN_ARRAY_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_bracket_in_array_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_ANNOTATION">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CAST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CAST">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CAST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_cast"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CATCH">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_catch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CONSTRUCTOR_DECLARATION">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_ENUM_CONSTANT">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_enum_constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_FOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_FOR">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_FOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_for"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_IF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_IF">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_IF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_if"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_METHOD_DECLARATION">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_method_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_METHOD_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_METHOD_INVOCATION">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_METHOD_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_method_invocation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_PARENTHESIZED_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_PARENTHESIZED_EXPRESSION">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_PARENTHESIZED_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_SWITCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_SWITCH">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_SWITCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_switch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_SYNCHRONIZED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_SYNCHRONIZED">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_SYNCHRONIZED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_synchronized"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_WHILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_WHILE">FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_WHILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_opening_paren_in_while"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_POSTFIX_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_POSTFIX_OPERATOR">FORMATTER_INSERT_SPACE_AFTER_POSTFIX_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_postfix_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_PREFIX_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_PREFIX_OPERATOR">FORMATTER_INSERT_SPACE_AFTER_PREFIX_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_prefix_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_QUESTION_IN_CONDITIONAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_QUESTION_IN_CONDITIONAL">FORMATTER_INSERT_SPACE_AFTER_QUESTION_IN_CONDITIONAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_question_in_conditional"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_QUESTION_IN_WILDCARD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_QUESTION_IN_WILDCARD">FORMATTER_INSERT_SPACE_AFTER_QUESTION_IN_WILDCARD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_question_in_wildcard"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_SEMICOLON_IN_FOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_SEMICOLON_IN_FOR">FORMATTER_INSERT_SPACE_AFTER_SEMICOLON_IN_FOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_semicolon_in_for"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_AFTER_UNARY_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_AFTER_UNARY_OPERATOR">FORMATTER_INSERT_SPACE_AFTER_UNARY_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_after_unary_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_AND_IN_TYPE_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_AND_IN_TYPE_PARAMETER">FORMATTER_INSERT_SPACE_BEFORE_AND_IN_TYPE_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_and_in_type_parameter"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_ASSIGNMENT_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_ASSIGNMENT_OPERATOR">FORMATTER_INSERT_SPACE_BEFORE_ASSIGNMENT_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_assignment_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_AT_IN_ANNOTATION_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_AT_IN_ANNOTATION_TYPE_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_AT_IN_ANNOTATION_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_at_in_annotation_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_BINARY_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_BINARY_OPERATOR">FORMATTER_INSERT_SPACE_BEFORE_BINARY_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_binary_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_TYPE_PARAMETERS">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACE_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACE_IN_ARRAY_INITIALIZER">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACE_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_brace_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACKET_IN_ARRAY_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACKET_IN_ARRAY_REFERENCE">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACKET_IN_ARRAY_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_bracket_in_array_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_ANNOTATION">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CAST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CAST">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CAST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_cast"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CATCH">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_catch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CONSTRUCTOR_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_ENUM_CONSTANT">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_enum_constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_FOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_FOR">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_FOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_for"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_IF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_IF">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_IF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_if"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_METHOD_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_method_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_METHOD_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_METHOD_INVOCATION">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_METHOD_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_method_invocation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_PARENTHESIZED_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_PARENTHESIZED_EXPRESSION">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_PARENTHESIZED_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_SWITCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_SWITCH">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_SWITCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_switch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_SYNCHRONIZED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_SYNCHRONIZED">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_SYNCHRONIZED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_synchronized"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_WHILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_WHILE">FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_WHILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_while"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_ASSERT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_ASSERT">FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_ASSERT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_colon_in_assert"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_CASE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_CASE">FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_CASE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_colon_in_case"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_CONDITIONAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_CONDITIONAL">FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_CONDITIONAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_colon_in_conditional"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_DEFAULT">FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_colon_in_default"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_FOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_FOR">FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_FOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_colon_in_for"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_LABELED_STATEMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_LABELED_STATEMENT">FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_LABELED_STATEMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_colon_in_labeled_statement"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ALLOCATION_EXPRESSION">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_allocation_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ANNOTATION">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ARRAY_INITIALIZER">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_CONSTRUCTOR_DECLARATION_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_CONSTRUCTOR_DECLARATION_PARAMETERS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_CONSTRUCTOR_DECLARATION_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_CONSTRUCTOR_DECLARATION_THROWS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_CONSTRUCTOR_DECLARATION_THROWS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_CONSTRUCTOR_DECLARATION_THROWS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ENUM_CONSTANT_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ENUM_CONSTANT_ARGUMENTS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ENUM_CONSTANT_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ENUM_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ENUM_DECLARATIONS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ENUM_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_enum_declarations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_EXPLICIT_CONSTRUCTOR_CALL_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_EXPLICIT_CONSTRUCTOR_CALL_ARGUMENTS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_EXPLICIT_CONSTRUCTOR_CALL_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_FOR_INCREMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_FOR_INCREMENTS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_FOR_INCREMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_for_increments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_FOR_INITS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_FOR_INITS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_FOR_INITS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_for_inits"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_DECLARATION_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_DECLARATION_PARAMETERS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_DECLARATION_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_DECLARATION_THROWS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_DECLARATION_THROWS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_DECLARATION_THROWS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_method_declaration_throws"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_INVOCATION_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_INVOCATION_ARGUMENTS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_INVOCATION_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_MULTIPLE_FIELD_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_MULTIPLE_FIELD_DECLARATIONS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_MULTIPLE_FIELD_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_MULTIPLE_LOCAL_DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_MULTIPLE_LOCAL_DECLARATIONS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_MULTIPLE_LOCAL_DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_PARAMETERIZED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_PARAMETERIZED_TYPE_REFERENCE">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_PARAMETERIZED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_SUPERINTERFACES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_SUPERINTERFACES">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_SUPERINTERFACES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_superinterfaces"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_TYPE_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_TYPE_ARGUMENTS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_TYPE_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_type_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_TYPE_PARAMETERS">FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_comma_in_type_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_ELLIPSIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_ELLIPSIS">FORMATTER_INSERT_SPACE_BEFORE_ELLIPSIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_ellipsis"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE">FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS">FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_TYPE_PARAMETERS">FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ANNOTATION_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ANNOTATION_TYPE_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ANNOTATION_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ANONYMOUS_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ANONYMOUS_TYPE_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ANONYMOUS_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ARRAY_INITIALIZER">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_BLOCK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_BLOCK">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_BLOCK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_block"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_CONSTRUCTOR_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ENUM_CONSTANT">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_enum_constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ENUM_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ENUM_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ENUM_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_METHOD_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_method_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_SWITCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_SWITCH">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_SWITCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_switch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_TYPE_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_TYPE_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_TYPE_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_type_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_REFERENCE">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_bracket_in_array_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_TYPE_REFERENCE">FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ANNOTATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ANNOTATION_TYPE_MEMBER_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ANNOTATION_TYPE_MEMBER_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ANNOTATION_TYPE_MEMBER_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_CATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_CATCH">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_CATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_catch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_CONSTRUCTOR_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ENUM_CONSTANT">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_enum_constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_FOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_FOR">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_FOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_for"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_IF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_IF">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_IF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_if"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_METHOD_DECLARATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_method_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_METHOD_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_METHOD_INVOCATION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_METHOD_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_method_invocation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_PARENTHESIZED_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_PARENTHESIZED_EXPRESSION">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_PARENTHESIZED_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_SWITCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_SWITCH">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_SWITCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_switch"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_SYNCHRONIZED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_SYNCHRONIZED">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_SYNCHRONIZED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_synchronized"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_WHILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_WHILE">FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_WHILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_paren_in_while"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_PARENTHESIZED_EXPRESSION_IN_RETURN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_PARENTHESIZED_EXPRESSION_IN_RETURN">FORMATTER_INSERT_SPACE_BEFORE_PARENTHESIZED_EXPRESSION_IN_RETURN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_parenthesized_expression_in_return"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_PARENTHESIZED_EXPRESSION_IN_THROW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_PARENTHESIZED_EXPRESSION_IN_THROW">FORMATTER_INSERT_SPACE_BEFORE_PARENTHESIZED_EXPRESSION_IN_THROW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_parenthesized_expression_in_throw"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_POSTFIX_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_POSTFIX_OPERATOR">FORMATTER_INSERT_SPACE_BEFORE_POSTFIX_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_postfix_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_PREFIX_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_PREFIX_OPERATOR">FORMATTER_INSERT_SPACE_BEFORE_PREFIX_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_prefix_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_QUESTION_IN_CONDITIONAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_QUESTION_IN_CONDITIONAL">FORMATTER_INSERT_SPACE_BEFORE_QUESTION_IN_CONDITIONAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_question_in_conditional"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_QUESTION_IN_WILDCARD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_QUESTION_IN_WILDCARD">FORMATTER_INSERT_SPACE_BEFORE_QUESTION_IN_WILDCARD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_question_in_wildcard"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON">FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_semicolon"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON_IN_FOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON_IN_FOR">FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON_IN_FOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_semicolon_in_for"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BEFORE_UNARY_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BEFORE_UNARY_OPERATOR">FORMATTER_INSERT_SPACE_BEFORE_UNARY_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_before_unary_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BETWEEN_BRACKETS_IN_ARRAY_TYPE_REFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BETWEEN_BRACKETS_IN_ARRAY_TYPE_REFERENCE">FORMATTER_INSERT_SPACE_BETWEEN_BRACKETS_IN_ARRAY_TYPE_REFERENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_between_brackets_in_array_type_reference"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_BRACES_IN_ARRAY_INITIALIZER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_BRACES_IN_ARRAY_INITIALIZER">FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_BRACES_IN_ARRAY_INITIALIZER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_between_empty_braces_in_array_initializer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_BRACKETS_IN_ARRAY_ALLOCATION_EXPRESSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_BRACKETS_IN_ARRAY_ALLOCATION_EXPRESSION">FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_BRACKETS_IN_ARRAY_ALLOCATION_EXPRESSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_ANNOTATION_TYPE_MEMBER_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_ANNOTATION_TYPE_MEMBER_DECLARATION">FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_ANNOTATION_TYPE_MEMBER_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_CONSTRUCTOR_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_CONSTRUCTOR_DECLARATION">FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_CONSTRUCTOR_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_ENUM_CONSTANT">FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_between_empty_parens_in_enum_constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_METHOD_DECLARATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_METHOD_DECLARATION">FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_METHOD_DECLARATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_between_empty_parens_in_method_declaration"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_METHOD_INVOCATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_METHOD_INVOCATION">FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_METHOD_INVOCATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.insert_space_between_empty_parens_in_method_invocation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_KEEP_ELSE_STATEMENT_ON_SAME_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_KEEP_ELSE_STATEMENT_ON_SAME_LINE">FORMATTER_KEEP_ELSE_STATEMENT_ON_SAME_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.keep_else_statement_on_same_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_KEEP_EMPTY_ARRAY_INITIALIZER_ON_ONE_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_KEEP_EMPTY_ARRAY_INITIALIZER_ON_ONE_LINE">FORMATTER_KEEP_EMPTY_ARRAY_INITIALIZER_ON_ONE_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.keep_empty_array_initializer_on_one_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_KEEP_EMPTY_OBJLIT_INITIALIZER_ON_ONE_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_KEEP_EMPTY_OBJLIT_INITIALIZER_ON_ONE_LINE">FORMATTER_KEEP_EMPTY_OBJLIT_INITIALIZER_ON_ONE_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.keep_empty_objlit_initializer_on_one_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_KEEP_GUARDIAN_CLAUSE_ON_ONE_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_KEEP_GUARDIAN_CLAUSE_ON_ONE_LINE">FORMATTER_KEEP_GUARDIAN_CLAUSE_ON_ONE_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.format_guardian_clause_on_one_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_KEEP_SIMPLE_IF_ON_ONE_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_KEEP_SIMPLE_IF_ON_ONE_LINE">FORMATTER_KEEP_SIMPLE_IF_ON_ONE_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.keep_imple_if_on_one_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_KEEP_THEN_STATEMENT_ON_SAME_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_KEEP_THEN_STATEMENT_ON_SAME_LINE">FORMATTER_KEEP_THEN_STATEMENT_ON_SAME_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.keep_then_statement_on_same_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_LINE_SPLIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_LINE_SPLIT">FORMATTER_LINE_SPLIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.lineSplit"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_NEVER_INDENT_BLOCK_COMMENTS_ON_FIRST_COLUMN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_NEVER_INDENT_BLOCK_COMMENTS_ON_FIRST_COLUMN">FORMATTER_NEVER_INDENT_BLOCK_COMMENTS_ON_FIRST_COLUMN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.never_indent_block_comments_on_first_column"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_NEVER_INDENT_LINE_COMMENTS_ON_FIRST_COLUMN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_NEVER_INDENT_LINE_COMMENTS_ON_FIRST_COLUMN">FORMATTER_NEVER_INDENT_LINE_COMMENTS_ON_FIRST_COLUMN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.never_indent_line_comments_on_first_column"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE">FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.number_of_empty_lines_to_preserve"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_PUT_EMPTY_STATEMENT_ON_NEW_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_PUT_EMPTY_STATEMENT_ON_NEW_LINE">FORMATTER_PUT_EMPTY_STATEMENT_ON_NEW_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.put_empty_statement_on_new_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_TAB_CHAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_TAB_CHAR">FORMATTER_TAB_CHAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.tabulation.char"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_TAB_SIZE">FORMATTER_TAB_SIZE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.tabulation.size"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_USE_TABS_ONLY_FOR_LEADING_INDENTATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_USE_TABS_ONLY_FOR_LEADING_INDENTATIONS">FORMATTER_USE_TABS_ONLY_FOR_LEADING_INDENTATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.use_tabs_only_for_leading_indentations"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_WRAP_BEFORE_BINARY_OPERATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_WRAP_BEFORE_BINARY_OPERATOR">FORMATTER_WRAP_BEFORE_BINARY_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.formatter.wrap_before_binary_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.INDENT_BY_ONE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#INDENT_BY_ONE">INDENT_BY_ONE</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.INDENT_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#INDENT_DEFAULT">INDENT_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.INDENT_ON_COLUMN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#INDENT_ON_COLUMN">INDENT_ON_COLUMN</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.MIXED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#MIXED">MIXED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"mixed"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.NEXT_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#NEXT_LINE">NEXT_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"next_line"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.NEXT_LINE_ON_WRAP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#NEXT_LINE_ON_WRAP">NEXT_LINE_ON_WRAP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"next_line_on_wrap"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.NEXT_LINE_SHIFTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#NEXT_LINE_SHIFTED">NEXT_LINE_SHIFTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"next_line_shifted"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.TRUE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#TRUE">TRUE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"true"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.WRAP_COMPACT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#WRAP_COMPACT">WRAP_COMPACT</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.WRAP_COMPACT_FIRST_BREAK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#WRAP_COMPACT_FIRST_BREAK">WRAP_COMPACT_FIRST_BREAK</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.WRAP_NEXT_PER_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#WRAP_NEXT_PER_LINE">WRAP_NEXT_PER_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.WRAP_NEXT_SHIFTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#WRAP_NEXT_SHIFTED">WRAP_NEXT_SHIFTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.WRAP_NO_SPLIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#WRAP_NO_SPLIT">WRAP_NO_SPLIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.WRAP_ONE_PER_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#WRAP_ONE_PER_LINE">WRAP_ONE_PER_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.infer.<A HREF="org/eclipse/wst/jsdt/core/infer/DefaultInferrenceProvider.html" title="class in org.eclipse.wst.jsdt.core.infer">DefaultInferrenceProvider</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.DefaultInferrenceProvider.ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/DefaultInferrenceProvider.html#ID">ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.infer.DefaultInferrenceProvider"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.infer.<A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html" title="class in org.eclipse.wst.jsdt.core.infer">InferOptions</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferOptions.DOC_LOCATION_AFTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html#DOC_LOCATION_AFTER">DOC_LOCATION_AFTER</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferOptions.DOC_LOCATION_BEFORE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html#DOC_LOCATION_BEFORE">DOC_LOCATION_BEFORE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferOptions.OPTION_DocLocation"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html#OPTION_DocLocation">OPTION_DocLocation</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.infer.docLocation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferOptions.OPTION_SaveArgumentComments"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html#OPTION_SaveArgumentComments">OPTION_SaveArgumentComments</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.infer.saveArgumentComments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferOptions.OPTION_UseAssignments"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html#OPTION_UseAssignments">OPTION_UseAssignments</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.infer.useAssignments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferOptions.OPTION_UseInitMethod"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferOptions.html#OPTION_UseInitMethod">OPTION_UseInitMethod</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.core.infer.useInitMethod"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.infer.<A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceManager.html" title="class in org.eclipse.wst.jsdt.core.infer">InferrenceManager</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferrenceManager.EXTENSION_POINT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceManager.html#EXTENSION_POINT">EXTENSION_POINT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"inferrenceSupport"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.infer.<A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html" title="interface in org.eclipse.wst.jsdt.core.infer">InferrenceProvider</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferrenceProvider.MAYBE_THIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html#MAYBE_THIS">MAYBE_THIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferrenceProvider.NOT_THIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html#NOT_THIS">NOT_THIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.infer.InferrenceProvider.ONLY_THIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html#ONLY_THIS">ONLY_THIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.manipulation.<A HREF="org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.html" title="class in org.eclipse.wst.jsdt.core.manipulation">JavaScriptManipulation</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.manipulation.JavaScriptManipulation.ID_PLUGIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.html#ID_PLUGIN">ID_PLUGIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.manipulation"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.refactoring.<A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html" title="interface in org.eclipse.wst.jsdt.core.refactoring">IJavaScriptRefactorings</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.CHANGE_METHOD_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#CHANGE_METHOD_SIGNATURE">CHANGE_METHOD_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.change.method.signature"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.CONVERT_ANONYMOUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#CONVERT_ANONYMOUS">CONVERT_ANONYMOUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.convert.anonymous"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.CONVERT_LOCAL_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#CONVERT_LOCAL_VARIABLE">CONVERT_LOCAL_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.promote.temp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.CONVERT_MEMBER_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#CONVERT_MEMBER_TYPE">CONVERT_MEMBER_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.move.inner"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.COPY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#COPY">COPY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.copy"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.DELETE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#DELETE">DELETE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.delete"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.ENCAPSULATE_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#ENCAPSULATE_FIELD">ENCAPSULATE_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.self.encapsulate"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.EXTRACT_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#EXTRACT_CONSTANT">EXTRACT_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.extract.constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.EXTRACT_INTERFACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#EXTRACT_INTERFACE">EXTRACT_INTERFACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.extract.interface"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.EXTRACT_LOCAL_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#EXTRACT_LOCAL_VARIABLE">EXTRACT_LOCAL_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.extract.temp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.EXTRACT_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#EXTRACT_METHOD">EXTRACT_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.extract.method"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.EXTRACT_SUPERCLASS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#EXTRACT_SUPERCLASS">EXTRACT_SUPERCLASS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.extract.superclass"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.GENERALIZE_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#GENERALIZE_TYPE">GENERALIZE_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.change.type"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.INFER_TYPE_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#INFER_TYPE_ARGUMENTS">INFER_TYPE_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.infer.typearguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.INLINE_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#INLINE_CONSTANT">INLINE_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.inline.constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.INLINE_LOCAL_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#INLINE_LOCAL_VARIABLE">INLINE_LOCAL_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.inline.temp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.INLINE_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#INLINE_METHOD">INLINE_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.inline.method"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.INTRODUCE_FACTORY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#INTRODUCE_FACTORY">INTRODUCE_FACTORY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.introduce.factory"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.INTRODUCE_INDIRECTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#INTRODUCE_INDIRECTION">INTRODUCE_INDIRECTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.introduce.indirection"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.INTRODUCE_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#INTRODUCE_PARAMETER">INTRODUCE_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.introduce.parameter"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.MOVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#MOVE">MOVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.move"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.MOVE_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#MOVE_METHOD">MOVE_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.move.method"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.MOVE_STATIC_MEMBERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#MOVE_STATIC_MEMBERS">MOVE_STATIC_MEMBERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.move.static"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.PULL_UP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#PULL_UP">PULL_UP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.pull.up"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.PUSH_DOWN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#PUSH_DOWN">PUSH_DOWN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.push.down"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_ENUM_CONSTANT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_ENUM_CONSTANT">RENAME_ENUM_CONSTANT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.enum.constant"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_FIELD">RENAME_FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.field"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_JAVA_PROJECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_JAVA_PROJECT">RENAME_JAVA_PROJECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.java.project"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_JAVASCRIPT_UNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_JAVASCRIPT_UNIT">RENAME_JAVASCRIPT_UNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.compilationunit"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_LOCAL_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_LOCAL_VARIABLE">RENAME_LOCAL_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.local.variable"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_METHOD">RENAME_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.method"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_PACKAGE">RENAME_PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.package"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_RESOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_RESOURCE">RENAME_RESOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.resource"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_SOURCE_FOLDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_SOURCE_FOLDER">RENAME_SOURCE_FOLDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.source.folder"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_TYPE">RENAME_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.type"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.RENAME_TYPE_PARAMETER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#RENAME_TYPE_PARAMETER">RENAME_TYPE_PARAMETER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.rename.type.parameter"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings.USE_SUPER_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#USE_SUPER_TYPE">USE_SUPER_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.use.supertype"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">JavaScriptRefactoringDescriptor</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.descriptors.JavaScriptRefactoringDescriptor.JAR_MIGRATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html#JAR_MIGRATION">JAR_MIGRATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>65536</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.descriptors.JavaScriptRefactoringDescriptor.JAR_REFACTORING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html#JAR_REFACTORING">JAR_REFACTORING</A></CODE></TD>
-<TD ALIGN="right"><CODE>524288</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.descriptors.JavaScriptRefactoringDescriptor.JAR_SOURCE_ATTACHMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html#JAR_SOURCE_ATTACHMENT">JAR_SOURCE_ATTACHMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>262144</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">RenameJavaScriptElementDescriptor</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor.STRATEGY_EMBEDDED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.html#STRATEGY_EMBEDDED">STRATEGY_EMBEDDED</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor.STRATEGY_EXACT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.html#STRATEGY_EXACT">STRATEGY_EXACT</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor.STRATEGY_SUFFIX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.html#STRATEGY_SUFFIX">STRATEGY_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.search.<A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html" title="interface in org.eclipse.wst.jsdt.core.search">IJavaScriptSearchConstants</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.ALL_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#ALL_OCCURRENCES">ALL_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.ANNOTATION_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#ANNOTATION_TYPE">ANNOTATION_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.CANCEL_IF_NOT_READY_TO_SEARCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CANCEL_IF_NOT_READY_TO_SEARCH">CANCEL_IF_NOT_READY_TO_SEARCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.CLASS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CLASS">CLASS</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.CLASS_AND_ENUM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CLASS_AND_ENUM">CLASS_AND_ENUM</A></CODE></TD>
-<TD ALIGN="right"><CODE>9</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.CLASS_AND_INTERFACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CLASS_AND_INTERFACE">CLASS_AND_INTERFACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>10</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.CONSTRUCTOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CONSTRUCTOR">CONSTRUCTOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.DECLARATIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#DECLARATIONS">DECLARATIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.ENUM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#ENUM">ENUM</A></CODE></TD>
-<TD ALIGN="right"><CODE>7</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.FIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#FIELD">FIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.FORCE_IMMEDIATE_SEARCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#FORCE_IMMEDIATE_SEARCH">FORCE_IMMEDIATE_SEARCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.FUNCTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#FUNCTION">FUNCTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>13</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.IGNORE_DECLARING_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#IGNORE_DECLARING_TYPE">IGNORE_DECLARING_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.IGNORE_RETURN_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#IGNORE_RETURN_TYPE">IGNORE_RETURN_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.IMPLEMENTORS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#IMPLEMENTORS">IMPLEMENTORS</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.INTERFACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#INTERFACE">INTERFACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>6</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.INTERFACE_AND_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#INTERFACE_AND_ANNOTATION">INTERFACE_AND_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>11</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.METHOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#METHOD">METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#PACKAGE">PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.READ_ACCESSES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#READ_ACCESSES">READ_ACCESSES</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.REFERENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#REFERENCES">REFERENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#TYPE">TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.UNKNOWN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#UNKNOWN">UNKNOWN</A></CODE></TD>
-<TD ALIGN="right"><CODE>-1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.VAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#VAR">VAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>12</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.WAIT_UNTIL_READY_TO_SEARCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#WAIT_UNTIL_READY_TO_SEARCH">WAIT_UNTIL_READY_TO_SEARCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants.WRITE_ACCESSES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#WRITE_ACCESSES">WRITE_ACCESSES</A></CODE></TD>
-<TD ALIGN="right"><CODE>5</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.search.<A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html" title="interface in org.eclipse.wst.jsdt.core.search">IJavaScriptSearchScope</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope.APPLICATION_LIBRARIES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html#APPLICATION_LIBRARIES">APPLICATION_LIBRARIES</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope.JAR_FILE_ENTRY_SEPARATOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html#JAR_FILE_ENTRY_SEPARATOR">JAR_FILE_ENTRY_SEPARATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"|"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope.REFERENCED_PROJECTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html#REFERENCED_PROJECTS">REFERENCED_PROJECTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope.SOURCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html#SOURCES">SOURCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope.SYSTEM_LIBRARIES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html#SYSTEM_LIBRARIES">SYSTEM_LIBRARIES</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.search.<A HREF="org/eclipse/wst/jsdt/core/search/SearchMatch.html" title="class in org.eclipse.wst.jsdt.core.search">SearchMatch</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchMatch.A_ACCURATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchMatch.html#A_ACCURATE">A_ACCURATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchMatch.A_INACCURATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchMatch.html#A_INACCURATE">A_INACCURATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.search.<A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_CAMELCASE_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_CAMELCASE_MATCH">R_CAMELCASE_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_CASE_SENSITIVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_CASE_SENSITIVE">R_CASE_SENSITIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_EQUIVALENT_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_EQUIVALENT_MATCH">R_EQUIVALENT_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_ERASURE_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_ERASURE_MATCH">R_ERASURE_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_EXACT_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_EXACT_MATCH">R_EXACT_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_FULL_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_FULL_MATCH">R_FULL_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_PATTERN_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_PATTERN_MATCH">R_PATTERN_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_PREFIX_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_PREFIX_MATCH">R_PREFIX_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.search.SearchPattern.R_REGEXP_MATCH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/search/SearchPattern.html#R_REGEXP_MATCH">R_REGEXP_MATCH</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.util.<A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html" title="interface in org.eclipse.wst.jsdt.core.util">IModifierConstants</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_ABSTRACT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_ABSTRACT">ACC_ABSTRACT</A></CODE></TD>
-<TD ALIGN="right"><CODE>1024</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_ANNOTATION">ACC_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>8192</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_BRIDGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_BRIDGE">ACC_BRIDGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_ENUM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_ENUM">ACC_ENUM</A></CODE></TD>
-<TD ALIGN="right"><CODE>16384</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_FINAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_FINAL">ACC_FINAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_INTERFACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_INTERFACE">ACC_INTERFACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>512</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_NATIVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_NATIVE">ACC_NATIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_PRIVATE">ACC_PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_PROTECTED">ACC_PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_PUBLIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_PUBLIC">ACC_PUBLIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_STATIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_STATIC">ACC_STATIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_STRICT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_STRICT">ACC_STRICT</A></CODE></TD>
-<TD ALIGN="right"><CODE>2048</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_SUPER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_SUPER">ACC_SUPER</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_SYNCHRONIZED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_SYNCHRONIZED">ACC_SYNCHRONIZED</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_SYNTHETIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_SYNTHETIC">ACC_SYNTHETIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>4096</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_TRANSIENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_TRANSIENT">ACC_TRANSIENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_VARARGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_VARARGS">ACC_VARARGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.IModifierConstants.ACC_VOLATILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_VOLATILE">ACC_VOLATILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.core.util.<A HREF="org/eclipse/wst/jsdt/core/util/JavaScriptUnitSorter.html" title="class in org.eclipse.wst.jsdt.core.util">JavaScriptUnitSorter</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.core.util.JavaScriptUnitSorter.RELATIVE_ORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/core/util/JavaScriptUnitSorter.html#RELATIVE_ORDER">RELATIVE_ORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"relativeOrder"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.internal.core.index.<A HREF="org/eclipse/wst/jsdt/internal/core/index/DiskIndex.html" title="class in org.eclipse.wst.jsdt.internal.core.index">DiskIndex</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.internal.core.index.DiskIndex.SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/internal/core/index/DiskIndex.html#SIGNATURE">SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"INDEX VERSION 1.121"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/CodeGeneration.html" title="class in org.eclipse.wst.jsdt.ui">CodeGeneration</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.CodeGeneration.ANNOTATION_BODY_TEMPLATE_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/CodeGeneration.html#ANNOTATION_BODY_TEMPLATE_ID">ANNOTATION_BODY_TEMPLATE_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.text.codetemplates.annotationbody"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.CodeGeneration.CLASS_BODY_TEMPLATE_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/CodeGeneration.html#CLASS_BODY_TEMPLATE_ID">CLASS_BODY_TEMPLATE_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.text.codetemplates.classbody"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.CodeGeneration.ENUM_BODY_TEMPLATE_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/CodeGeneration.html#ENUM_BODY_TEMPLATE_ID">ENUM_BODY_TEMPLATE_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.text.codetemplates.enumbody"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.CodeGeneration.INTERFACE_BODY_TEMPLATE_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/CodeGeneration.html#INTERFACE_BODY_TEMPLATE_ID">INTERFACE_BODY_TEMPLATE_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.text.codetemplates.interfacebody"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/IContextMenuConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IContextMenuConstants</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IContextMenuConstants.TARGET_ID_HIERARCHY_VIEW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IContextMenuConstants.html#TARGET_ID_HIERARCHY_VIEW">TARGET_ID_HIERARCHY_VIEW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.TypeHierarchy.typehierarchy"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IContextMenuConstants.TARGET_ID_MEMBERS_VIEW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IContextMenuConstants.html#TARGET_ID_MEMBERS_VIEW">TARGET_ID_MEMBERS_VIEW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.TypeHierarchy.members"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IContextMenuConstants.TARGET_ID_SUBTYPES_VIEW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IContextMenuConstants.html#TARGET_ID_SUBTYPES_VIEW">TARGET_ID_SUBTYPES_VIEW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.TypeHierarchy.subtypes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IContextMenuConstants.TARGET_ID_SUPERTYPES_VIEW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IContextMenuConstants.html#TARGET_ID_SUPERTYPES_VIEW">TARGET_ID_SUPERTYPES_VIEW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.TypeHierarchy.supertypes"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_ALL_TYPES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_ALL_TYPES">CONSIDER_ALL_TYPES</A></CODE></TD>
-<TD ALIGN="right"><CODE>256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_ANNOTATION_TYPES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_ANNOTATION_TYPES">CONSIDER_ANNOTATION_TYPES</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_BINARIES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_BINARIES">CONSIDER_BINARIES</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_CLASSES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_CLASSES">CONSIDER_CLASSES</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_CLASSES_AND_ENUMS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_CLASSES_AND_ENUMS">CONSIDER_CLASSES_AND_ENUMS</A></CODE></TD>
-<TD ALIGN="right"><CODE>1024</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_CLASSES_AND_INTERFACES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_CLASSES_AND_INTERFACES">CONSIDER_CLASSES_AND_INTERFACES</A></CODE></TD>
-<TD ALIGN="right"><CODE>512</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_ENUMS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_ENUMS">CONSIDER_ENUMS</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_EXTERNAL_JARS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_EXTERNAL_JARS">CONSIDER_EXTERNAL_JARS</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_INTERFACES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_INTERFACES">CONSIDER_INTERFACES</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.IJavaScriptElementSearchConstants.CONSIDER_REQUIRED_PROJECTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_REQUIRED_PROJECTS">CONSIDER_REQUIRED_PROJECTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html" title="interface in org.eclipse.wst.jsdt.ui">ISharedImages</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_FIELD_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_FIELD_DEFAULT">IMG_FIELD_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.field_default_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_FIELD_PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_FIELD_PRIVATE">IMG_FIELD_PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.field_private_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_FIELD_PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_FIELD_PROTECTED">IMG_FIELD_PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.field_protected_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_FIELD_PUBLIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_FIELD_PUBLIC">IMG_FIELD_PUBLIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.field_public_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_ANNOTATION">IMG_OBJS_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.annotation_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_ANNOTATION_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_ANNOTATION_DEFAULT">IMG_OBJS_ANNOTATION_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.annotation_default_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_ANNOTATION_PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_ANNOTATION_PRIVATE">IMG_OBJS_ANNOTATION_PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.annotation_private_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_ANNOTATION_PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_ANNOTATION_PROTECTED">IMG_OBJS_ANNOTATION_PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.annotation_protected_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_CFILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_CFILE">IMG_OBJS_CFILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.classf_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_CLASS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_CLASS">IMG_OBJS_CLASS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.class_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_CLASS_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_CLASS_DEFAULT">IMG_OBJS_CLASS_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.class_default_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_CLASSPATH_VAR_ENTRY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_CLASSPATH_VAR_ENTRY">IMG_OBJS_CLASSPATH_VAR_ENTRY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.envvar_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_CUNIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_CUNIT">IMG_OBJS_CUNIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.jcu_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_DEFAULT">IMG_OBJS_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.methdef_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_EMPTY_LOGICAL_PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_EMPTY_LOGICAL_PACKAGE">IMG_OBJS_EMPTY_LOGICAL_PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.empty_logical_package_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_EMPTY_PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_EMPTY_PACKAGE">IMG_OBJS_EMPTY_PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.empty_pack_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_ENUM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_ENUM">IMG_OBJS_ENUM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.enum_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_ENUM_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_ENUM_DEFAULT">IMG_OBJS_ENUM_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.enum_default_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_ENUM_PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_ENUM_PRIVATE">IMG_OBJS_ENUM_PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.enum_private_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_ENUM_PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_ENUM_PROTECTED">IMG_OBJS_ENUM_PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.enum_protected_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_EXTERNAL_ARCHIVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_EXTERNAL_ARCHIVE">IMG_OBJS_EXTERNAL_ARCHIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.jar_l_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_EXTERNAL_ARCHIVE_WITH_SOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_EXTERNAL_ARCHIVE_WITH_SOURCE">IMG_OBJS_EXTERNAL_ARCHIVE_WITH_SOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.jar_lsrc_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_IMPCONT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_IMPCONT">IMG_OBJS_IMPCONT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.impc_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_IMPDECL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_IMPDECL">IMG_OBJS_IMPDECL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.imp_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INNER_CLASS_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INNER_CLASS_DEFAULT">IMG_OBJS_INNER_CLASS_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.innerclass_default_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INNER_CLASS_PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INNER_CLASS_PRIVATE">IMG_OBJS_INNER_CLASS_PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.innerclass_private_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INNER_CLASS_PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INNER_CLASS_PROTECTED">IMG_OBJS_INNER_CLASS_PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.innerclass_protected_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INNER_CLASS_PUBLIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INNER_CLASS_PUBLIC">IMG_OBJS_INNER_CLASS_PUBLIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.innerclass_public_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INNER_INTERFACE_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INNER_INTERFACE_DEFAULT">IMG_OBJS_INNER_INTERFACE_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.innerinterface_default_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INNER_INTERFACE_PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INNER_INTERFACE_PRIVATE">IMG_OBJS_INNER_INTERFACE_PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.innerinterface_private_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INNER_INTERFACE_PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INNER_INTERFACE_PROTECTED">IMG_OBJS_INNER_INTERFACE_PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.innerinterface_protected_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INNER_INTERFACE_PUBLIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INNER_INTERFACE_PUBLIC">IMG_OBJS_INNER_INTERFACE_PUBLIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.innerinterface_public_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INTERFACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INTERFACE">IMG_OBJS_INTERFACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.int_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_INTERFACE_DEFAULT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_INTERFACE_DEFAULT">IMG_OBJS_INTERFACE_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.int_default_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_JAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_JAR">IMG_OBJS_JAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.jar_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_JAR_WITH_SOURCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_JAR_WITH_SOURCE">IMG_OBJS_JAR_WITH_SOURCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.jar_src_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_JAVADOCTAG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_JAVADOCTAG">IMG_OBJS_JAVADOCTAG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.jdoc_tag_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_LIBRARY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_LIBRARY">IMG_OBJS_LIBRARY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.library_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_LOCAL_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_LOCAL_VARIABLE">IMG_OBJS_LOCAL_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.localvariable_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_LOGICAL_PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_LOGICAL_PACKAGE">IMG_OBJS_LOGICAL_PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.logical_package_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_PACKAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_PACKAGE">IMG_OBJS_PACKAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.package_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_PACKDECL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_PACKDECL">IMG_OBJS_PACKDECL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.packd_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_PACKFRAG_ROOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_PACKFRAG_ROOT">IMG_OBJS_PACKFRAG_ROOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.packagefolder_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_PRIVATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_PRIVATE">IMG_OBJS_PRIVATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.methpri_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_PROTECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_PROTECTED">IMG_OBJS_PROTECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.methpro_obj.gif"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ISharedImages.IMG_OBJS_PUBLIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ISharedImages.html#IMG_OBJS_PUBLIC">IMG_OBJS_PUBLIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.methpub_obj.gif"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html" title="interface in org.eclipse.wst.jsdt.ui">ITypeHierarchyViewPart</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ITypeHierarchyViewPart.HIERARCHY_MODE_CLASSIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html#HIERARCHY_MODE_CLASSIC">HIERARCHY_MODE_CLASSIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ITypeHierarchyViewPart.HIERARCHY_MODE_SUBTYPES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html#HIERARCHY_MODE_SUBTYPES">HIERARCHY_MODE_SUBTYPES</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ITypeHierarchyViewPart.HIERARCHY_MODE_SUPERTYPES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html#HIERARCHY_MODE_SUPERTYPES">HIERARCHY_MODE_SUPERTYPES</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ITypeHierarchyViewPart.VIEW_LAYOUT_AUTOMATIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html#VIEW_LAYOUT_AUTOMATIC">VIEW_LAYOUT_AUTOMATIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ITypeHierarchyViewPart.VIEW_LAYOUT_HORIZONTAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html#VIEW_LAYOUT_HORIZONTAL">VIEW_LAYOUT_HORIZONTAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ITypeHierarchyViewPart.VIEW_LAYOUT_SINGLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html#VIEW_LAYOUT_SINGLE">VIEW_LAYOUT_SINGLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.ITypeHierarchyViewPart.VIEW_LAYOUT_VERTICAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html#VIEW_LAYOUT_VERTICAL">VIEW_LAYOUT_VERTICAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementImageDescriptor</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.ABSTRACT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#ABSTRACT">ABSTRACT</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.CONSTRUCTOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#CONSTRUCTOR">CONSTRUCTOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>512</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.DEPRECATED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#DEPRECATED">DEPRECATED</A></CODE></TD>
-<TD ALIGN="right"><CODE>1024</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.ERROR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#ERROR">ERROR</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.FINAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#FINAL">FINAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.IMPLEMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#IMPLEMENTS">IMPLEMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.OVERRIDES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#OVERRIDES">OVERRIDES</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.RUNNABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#RUNNABLE">RUNNABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.STATIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#STATIC">STATIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.SYNCHRONIZED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#SYNCHRONIZED">SYNCHRONIZED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.TRANSIENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#TRANSIENT">TRANSIENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>4096</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.VOLATILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#VOLATILE">VOLATILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>2048</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementImageDescriptor.WARNING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#WARNING">WARNING</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabelProvider</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_BASICS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_BASICS">SHOW_BASICS</A></CODE></TD>
-<TD ALIGN="right"><CODE>0</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_CONTAINER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_CONTAINER">SHOW_CONTAINER</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_CONTAINER_QUALIFICATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_CONTAINER_QUALIFICATION">SHOW_CONTAINER_QUALIFICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>8</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_OVERLAY_ICONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_OVERLAY_ICONS">SHOW_OVERLAY_ICONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_PARAMETERS">SHOW_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>2</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_POST_QUALIFIED">SHOW_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>2048</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_POSTIFIX_QUALIFICATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_POSTIFIX_QUALIFICATION">SHOW_POSTIFIX_QUALIFICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>128</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_QUALIFIED">SHOW_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>1024</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_RETURN_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_RETURN_TYPE">SHOW_RETURN_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_ROOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_ROOT">SHOW_ROOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>64</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_SMALL_ICONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_SMALL_ICONS">SHOW_SMALL_ICONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>256</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_TYPE">SHOW_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_VARIABLE">SHOW_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>512</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.APPEND_ROOT_PATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#APPEND_ROOT_PATH">APPEND_ROOT_PATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>8796093022208L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.CF_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CF_POST_QUALIFIED">CF_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>268435456L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.CF_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CF_QUALIFIED">CF_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>134217728L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.CU_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CU_POST_QUALIFIED">CU_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4294967296L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.CU_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CU_QUALIFIED">CU_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>2147483648L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.D_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#D_POST_QUALIFIED">D_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>33554432L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.D_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#D_QUALIFIED">D_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>16777216L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.ELLIPSIS_STRING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#ELLIPSIS_STRING">ELLIPSIS_STRING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"..."</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.F_APP_TYPE_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#F_APP_TYPE_SIGNATURE">F_APP_TYPE_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>16384L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.F_CATEGORY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#F_CATEGORY">F_CATEGORY</A></CODE></TD>
-<TD ALIGN="right"><CODE>562949953421312L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.F_FULLY_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#F_FULLY_QUALIFIED">F_FULLY_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>65536L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.F_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#F_POST_QUALIFIED">F_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>131072L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.F_PRE_TYPE_SIGNATURE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#F_PRE_TYPE_SIGNATURE">F_PRE_TYPE_SIGNATURE</A></CODE></TD>
-<TD ALIGN="right"><CODE>32768L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.I_FULLY_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#I_FULLY_QUALIFIED">I_FULLY_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>1024L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.I_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#I_POST_QUALIFIED">I_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>2048L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_APP_RETURNTYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_APP_RETURNTYPE">M_APP_RETURNTYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>32L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_APP_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_APP_TYPE_PARAMETERS">M_APP_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>8L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_CATEGORY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_CATEGORY">M_CATEGORY</A></CODE></TD>
-<TD ALIGN="right"><CODE>1125899906842624L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_EXCEPTIONS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_EXCEPTIONS">M_EXCEPTIONS</A></CODE></TD>
-<TD ALIGN="right"><CODE>16L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_FULLY_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_FULLY_QUALIFIED">M_FULLY_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>128L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_PARAMETER_NAMES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_PARAMETER_NAMES">M_PARAMETER_NAMES</A></CODE></TD>
-<TD ALIGN="right"><CODE>2L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_PARAMETER_TYPES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_PARAMETER_TYPES">M_PARAMETER_TYPES</A></CODE></TD>
-<TD ALIGN="right"><CODE>1L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_POST_QUALIFIED">M_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>256L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_PRE_RETURNTYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_PRE_RETURNTYPE">M_PRE_RETURNTYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>64L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.M_PRE_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_PRE_TYPE_PARAMETERS">M_PRE_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>4L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.P_COMPRESSED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#P_COMPRESSED">P_COMPRESSED</A></CODE></TD>
-<TD ALIGN="right"><CODE>137438953472L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.P_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#P_POST_QUALIFIED">P_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>68719476736L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.P_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#P_QUALIFIED">P_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>34359738368L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.PREPEND_ROOT_PATH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#PREPEND_ROOT_PATH">PREPEND_ROOT_PATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>17592186044416L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.REFERENCED_ROOT_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#REFERENCED_ROOT_POST_QUALIFIED">REFERENCED_ROOT_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>35184372088832L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.ROOT_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#ROOT_POST_QUALIFIED">ROOT_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4398046511104L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.ROOT_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#ROOT_QUALIFIED">ROOT_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>2199023255552L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.ROOT_VARIABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#ROOT_VARIABLE">ROOT_VARIABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1099511627776L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.SHOW_TYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#SHOW_TYPE">SHOW_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>4503599627370496L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.T_CATEGORY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#T_CATEGORY">T_CATEGORY</A></CODE></TD>
-<TD ALIGN="right"><CODE>2251799813685248L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.T_CONTAINER_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#T_CONTAINER_QUALIFIED">T_CONTAINER_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>524288L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.T_FULLY_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#T_FULLY_QUALIFIED">T_FULLY_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>262144L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.T_POST_QUALIFIED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#T_POST_QUALIFIED">T_POST_QUALIFIED</A></CODE></TD>
-<TD ALIGN="right"><CODE>1048576L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.T_TYPE_PARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#T_TYPE_PARAMETERS">T_TYPE_PARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>2097152L</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptElementLabels.USE_RESOLVED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;long</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#USE_RESOLVED">USE_RESOLVED</A></CODE></TD>
-<TD ALIGN="right"><CODE>281474976710656L</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_ACTION_SET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_ACTION_SET">ID_ACTION_SET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.JavaActionSet"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_ACTION_SET2"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_ACTION_SET2">ID_ACTION_SET2</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.JavaActionSet2"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_CF_EDITOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_CF_EDITOR">ID_CF_EDITOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.ClassFileEditor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_CODING_ACTION_SET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_CODING_ACTION_SET">ID_CODING_ACTION_SET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.CodingActionSet"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_CU_EDITOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_CU_EDITOR">ID_CU_EDITOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.CompilationUnitEditor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_ELEMENT_CREATION_ACTION_SET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_ELEMENT_CREATION_ACTION_SET">ID_ELEMENT_CREATION_ACTION_SET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_HIERARCHYPERSPECTIVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_HIERARCHYPERSPECTIVE">ID_HIERARCHYPERSPECTIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.JavaHierarchyPerspective"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_JAVADOC_VIEW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_JAVADOC_VIEW">ID_JAVADOC_VIEW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.JavadocView"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_OPEN_ACTION_SET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_OPEN_ACTION_SET">ID_OPEN_ACTION_SET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.A_OpenActionSet"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_PACKAGES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_PACKAGES">ID_PACKAGES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.PackageExplorer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_PERSPECTIVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_PERSPECTIVE">ID_PERSPECTIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.JavaPerspective"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_PLUGIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_PLUGIN">ID_PLUGIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_SEARCH_ACTION_SET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_SEARCH_ACTION_SET">ID_SEARCH_ACTION_SET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.SearchActionSet"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_SNIPPET_EDITOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_SNIPPET_EDITOR">ID_SNIPPET_EDITOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.SnippetEditor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_SOURCE_VIEW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_SOURCE_VIEW">ID_SOURCE_VIEW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.SourceView"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JavaScriptUI.ID_TYPE_HIERARCHY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptUI.html#ID_TYPE_HIERARCHY">ID_TYPE_HIERARCHY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.TypeHierarchy"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/JSdocContentAccess.html" title="class in org.eclipse.wst.jsdt.ui">JSdocContentAccess</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.JSdocContentAccess.EXTENSION_POINT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/JSdocContentAccess.html#EXTENSION_POINT">EXTENSION_POINT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"documentationProvider"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-
-<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
-<TH ALIGN="left" COLSPAN="3">org.eclipse.wst.jsdt.ui.<A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_CATEGORY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_CATEGORY">APPEARANCE_CATEGORY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.category"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_COMPRESS_PACKAGE_NAMES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_COMPRESS_PACKAGE_NAMES">APPEARANCE_COMPRESS_PACKAGE_NAMES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.compresspackagenames"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER">APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.enable.visibility.order"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER">APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.flatPackagesInPackageExplorer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_JAVADOC_FONT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_JAVADOC_FONT">APPEARANCE_JAVADOC_FONT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.javadocfont"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_MEMBER_SORT_ORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_MEMBER_SORT_ORDER">APPEARANCE_MEMBER_SORT_ORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"outlinesortoption"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_METHOD_RETURNTYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_METHOD_RETURNTYPE">APPEARANCE_METHOD_RETURNTYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.methodreturntype"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_METHOD_TYPEPARAMETERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_METHOD_TYPEPARAMETERS">APPEARANCE_METHOD_TYPEPARAMETERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.methodtypeparametesr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW">APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"PackagesView.pkgNamePatternForPackagesView"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.APPEARANCE_VISIBILITY_SORT_ORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_VISIBILITY_SORT_ORDER">APPEARANCE_VISIBILITY_SORT_ORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.visibility.order"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.BROWSING_LINK_VIEW_TO_EDITOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#BROWSING_LINK_VIEW_TO_EDITOR">BROWSING_LINK_VIEW_TO_EDITOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.browsing.linktoeditor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.BROWSING_STACK_VERTICALLY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#BROWSING_STACK_VERTICALLY">BROWSING_STACK_VERTICALLY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.browsing.stackVertically"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_ADDIMPORT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_ADDIMPORT">CODEASSIST_ADDIMPORT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_add_import"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_AUTOACTIVATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOACTIVATION">CODEASSIST_AUTOACTIVATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_autoactivation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_AUTOACTIVATION_DELAY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOACTIVATION_DELAY">CODEASSIST_AUTOACTIVATION_DELAY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_autoactivation_delay"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA">CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_autoactivation_triggers_java"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC">CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_autoactivation_triggers_javadoc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_AUTOINSERT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOINSERT">CODEASSIST_AUTOINSERT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_autoinsert"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_CASE_SENSITIVITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_CASE_SENSITIVITY">CODEASSIST_CASE_SENSITIVITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_case_sensitivity"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_CATEGORY_ORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_CATEGORY_ORDER">CODEASSIST_CATEGORY_ORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_category_order"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_EXCLUDED_CATEGORIES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_EXCLUDED_CATEGORIES">CODEASSIST_EXCLUDED_CATEGORIES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_disabled_computers"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_FAVORITE_STATIC_MEMBERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_FAVORITE_STATIC_MEMBERS">CODEASSIST_FAVORITE_STATIC_MEMBERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_favorite_static_members"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_FILL_ARGUMENT_NAMES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_FILL_ARGUMENT_NAMES">CODEASSIST_FILL_ARGUMENT_NAMES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_fill_method_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_GUESS_METHOD_ARGUMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_GUESS_METHOD_ARGUMENTS">CODEASSIST_GUESS_METHOD_ARGUMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_guess_method_arguments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_INSERT_COMPLETION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_INSERT_COMPLETION">CODEASSIST_INSERT_COMPLETION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_insert_completion"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_LRU_HISTORY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_LRU_HISTORY">CODEASSIST_LRU_HISTORY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_lru_history"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_ORDER_PROPOSALS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_ORDER_PROPOSALS">CODEASSIST_ORDER_PROPOSALS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_order_proposals"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_PARAMETERS_BACKGROUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PARAMETERS_BACKGROUND">CODEASSIST_PARAMETERS_BACKGROUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_parameters_background"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_PARAMETERS_FOREGROUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PARAMETERS_FOREGROUND">CODEASSIST_PARAMETERS_FOREGROUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_parameters_foreground"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_PREFIX_COMPLETION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PREFIX_COMPLETION">CODEASSIST_PREFIX_COMPLETION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_prefix_completion"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_PROPOSALS_BACKGROUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PROPOSALS_BACKGROUND">CODEASSIST_PROPOSALS_BACKGROUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_proposals_background"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_PROPOSALS_FOREGROUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PROPOSALS_FOREGROUND">CODEASSIST_PROPOSALS_FOREGROUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_proposals_foreground"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_REPLACEMENT_BACKGROUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_REPLACEMENT_BACKGROUND">CODEASSIST_REPLACEMENT_BACKGROUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_completion_replacement_background"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_REPLACEMENT_FOREGROUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_REPLACEMENT_FOREGROUND">CODEASSIST_REPLACEMENT_FOREGROUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_completion_replacement_foreground"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_SHOW_VISIBLE_PROPOSALS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_SHOW_VISIBLE_PROPOSALS">CODEASSIST_SHOW_VISIBLE_PROPOSALS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_show_visible_proposals"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_SORTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_SORTER">CODEASSIST_SORTER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content_assist_sorter"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_ADD_COMMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_ADD_COMMENTS">CODEGEN_ADD_COMMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.javadoc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_EXCEPTION_VAR_NAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_EXCEPTION_VAR_NAME">CODEGEN_EXCEPTION_VAR_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.exception.name"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_GETTERSETTER_PREFIX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_GETTERSETTER_PREFIX">CODEGEN_GETTERSETTER_PREFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.gettersetter.prefix.list"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_GETTERSETTER_SUFFIX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_GETTERSETTER_SUFFIX">CODEGEN_GETTERSETTER_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.gettersetter.suffix.list"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_IS_FOR_GETTERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_IS_FOR_GETTERS">CODEGEN_IS_FOR_GETTERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.gettersetter.use.is"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_KEYWORD_THIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_KEYWORD_THIS">CODEGEN_KEYWORD_THIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.keywordthis"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_USE_GETTERSETTER_PREFIX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_USE_GETTERSETTER_PREFIX">CODEGEN_USE_GETTERSETTER_PREFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.gettersetter.prefix.enable"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_USE_GETTERSETTER_SUFFIX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_USE_GETTERSETTER_SUFFIX">CODEGEN_USE_GETTERSETTER_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.gettersetter.suffix.enable"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_USE_OVERRIDE_ANNOTATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_USE_OVERRIDE_ANNOTATION">CODEGEN_USE_OVERRIDE_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.overrideannotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.DOUBLE_CLICK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#DOUBLE_CLICK">DOUBLE_CLICK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"packageview.doubleclick"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.DOUBLE_CLICK_EXPANDS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#DOUBLE_CLICK_EXPANDS">DOUBLE_CLICK_EXPANDS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"packageview.doubleclick.expands"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.DOUBLE_CLICK_GOES_INTO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#DOUBLE_CLICK_GOES_INTO">DOUBLE_CLICK_GOES_INTO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"packageview.gointo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_ADD_JAVADOC_TAGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_ADD_JAVADOC_TAGS">EDITOR_ADD_JAVADOC_TAGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"addJavaDocTags"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_ALT_SHIFT_HOVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_ALT_SHIFT_HOVER">EDITOR_ALT_SHIFT_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"altShiftHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_ANNOTATION_ROLL_OVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_ANNOTATION_ROLL_OVER">EDITOR_ANNOTATION_ROLL_OVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"editor_annotation_roll_over"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BOLD_SUFFIX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BOLD_SUFFIX">EDITOR_BOLD_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BOOKMARK_INDICATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BOOKMARK_INDICATION">EDITOR_BOOKMARK_INDICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bookmarkIndication"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BOOKMARK_INDICATION_COLOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BOOKMARK_INDICATION_COLOR">EDITOR_BOOKMARK_INDICATION_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bookmarkIndicationColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER">EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bookmarkIndicationInOverviewRuler"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BROWSER_LIKE_LINKS">EDITOR_BROWSER_LIKE_LINKS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"browserLikeLinks"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER">EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"browserLikeLinksKeyModifier"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK">EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"browserLikeLinksKeyModifierMask"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CLOSE_BRACES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CLOSE_BRACES">EDITOR_CLOSE_BRACES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"closeBraces"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CLOSE_BRACKETS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CLOSE_BRACKETS">EDITOR_CLOSE_BRACKETS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"closeBrackets"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CLOSE_JAVADOCS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CLOSE_JAVADOCS">EDITOR_CLOSE_JAVADOCS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"closeJavaDocs"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CLOSE_STRINGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CLOSE_STRINGS">EDITOR_CLOSE_STRINGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"closeStrings"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CORRECTION_INDICATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CORRECTION_INDICATION">EDITOR_CORRECTION_INDICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"JavaEditor.ShowTemporaryProblem"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CTRL_ALT_HOVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CTRL_ALT_HOVER">EDITOR_CTRL_ALT_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ctrlAltHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CTRL_ALT_SHIFT_HOVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CTRL_ALT_SHIFT_HOVER">EDITOR_CTRL_ALT_SHIFT_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ctrlAltShiftHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CTRL_HOVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CTRL_HOVER">EDITOR_CTRL_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ctrlHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CTRL_SHIFT_HOVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CTRL_SHIFT_HOVER">EDITOR_CTRL_SHIFT_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ctrlShiftHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CURRENT_LINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CURRENT_LINE">EDITOR_CURRENT_LINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"currentLine"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CURRENT_LINE_COLOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CURRENT_LINE_COLOR">EDITOR_CURRENT_LINE_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"currentLineColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_DEFAULT_HOVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_DEFAULT_HOVER">EDITOR_DEFAULT_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"defaultHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_DEFAULT_HOVER_CONFIGURED_ID">EDITOR_DEFAULT_HOVER_CONFIGURED_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"defaultHoverConfiguredId"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_DISABLE_OVERWRITE_MODE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_DISABLE_OVERWRITE_MODE">EDITOR_DISABLE_OVERWRITE_MODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"disable_overwrite_mode"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER">EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"errorIndicationInOverviewRuler"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_ESCAPE_STRINGS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_ESCAPE_STRINGS">EDITOR_ESCAPE_STRINGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"escapeStrings"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_EVALUTE_TEMPORARY_PROBLEMS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>